摘要:
这个问题很早就有个疑问,比如我们有个类: public class Emp { public Emp() { Name = "Emp"; } public int Id { get; set; } public int? Age { get; set; } public string Name { 阅读全文
摘要:
这个是偶然发现的,我们看下面的代码: public static void Main() { int addCount = 0; int updateCount = 0; var dict = new ConcurrentDictionary<int, int>(); for (var i = 0; 阅读全文