コード例 #1
0
 public void Add(JsonAttribute json)
 {
     if (string.IsNullOrWhiteSpace(json.Key))
     {
         throw new ArgumentException("Json attribute should be an key");
     }
     _jsons.Add(json.Key, json);
 }
コード例 #2
0
 public void Remove(JsonAttribute json)
 {
     _jsons.Remove(json.Key);
 }