Example #1
0
 public void AddOrSet()
 {
     _Dict.AddOrSet(dict1, "张三", new TestModel()
     {
         Age = 66
     });
     Log.Debug(dict1.ToJson());
     Assert.True(dict1.Count > 1);
 }