摘要: 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 阅读(353) 评论(0) 推荐(0) 编辑