新线程匿名方法的新用法
Posted net 小雪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新线程匿名方法的新用法相关的知识,希望对你有一定的参考价值。
1 static void Main(string[] args) 2 { 3 System.Threading.Thread t1 = new System.Threading.Thread 4 (delegate() 5 { 6 System.Console.Write("Hello, "); 7 System.Console.WriteLine("World!"); 8 }); 9 t1.Start();
10 11 //用 12 System.Threading.Tasks.Task.Factory.StartNew(() => 13 { 14 // 缓存 15 CacheHelp.Set<IEnumerable<StuNumberRecordView>>("KC_StuNumbers_" + user.UserNo, list, new TimeSpan(1, 0, 0)); 16 }); 17 18 19 Console.WriteLine(""); 20 }
以上是关于新线程匿名方法的新用法的主要内容,如果未能解决你的问题,请参考以下文章