08 2013 档案

摘要:http://msdn.microsoft.com/en-us/library/dd537607.aspxusing System;using System.Collections.Concurrent;using System.Threading;using System.Threading.Tasks;public class Example{ public static void Main() { var tokenSource = new CancellationTokenSource(); var token = tokenSource.Token; ... 阅读全文
posted @ 2013-08-27 23:43 I'm CY 阅读(354) 评论(0) 推荐(0) 编辑
摘要:I'd suggest checking for an inner exception. If there isn't one, check your logs for the exception that occurred immediately prior to this one.This isn't a web-specific exception, I've also encountered it in desktop-app development. In short, what's happening is that the thread r 阅读全文
posted @ 2013-08-19 22:11 I'm CY 阅读(1589) 评论(0) 推荐(0) 编辑