1.lock 类似于 java中的synchronized,对东西或代码块加上互斥锁。
2.c#中的lambda表达式, ForEach(x => f(n))
3.c# 中的 something?.method 的含义是 如果something是null,返回null, 否则返回something的method,,或者属性。
4.c# static readonly: https://www.cnblogs.com/qingxia/archive/2011/02/10/1950741.html 运行时赋值, Const 编译时赋值。
5.c# System.Threading.CancellationToken(其IsCancellationRequested要领)
6.c#中的 #region #endregion 代码折叠,没啥卵用。
标签:
原文地点:https://www.cnblogs.com/ppgeneve/p/8819826.html