摘要:
//首先说一下匿名方法:,无名字, //无参数匿名函数 static void Main(string[] args){ Action f1=delegate(){ console.WriteLine("我是AAA"); };//给委托赋值一个匿名方法 f1();//执行委托 } //有参数匿名函数 阅读全文
摘要:
yield return 不仅能够简化数据的返回,而且可以让数据处理“流水线化”,提升性能 static IEnumerable<string> Test(){ yield return "hello"; yield return "yzk"; yield return "youzack"; } 阅读全文
摘要:
Task<string> t1=File.ReadAllTextAsync("d:/1.txt"); Task<string> t2=File.ReadAllTextAsync("d:/2.txt"); Task<string> t3=File.ReadAllTextAsync("d:/3.txt" 阅读全文
摘要:
static async Task Main(string[] args){ CancellationTokenSource cts=new CancellationTokenSource(); cts.CancelAfter(5000);//5秒之后取消操作 CancellationToken c 阅读全文