Example #1
0
 public void AddProperties(Dictionary <string, string> props)
 {
     if (props != null)
     {
         foreach (var prop in props)
         {
             Dict.AddProperty(prop.Key, prop.Value);
         }
     }
 }
Example #2
0
 public void AddProperty(string key, decimal value)
 {
     Dict.AddProperty(key, value);
 }
Example #3
0
 public void AddProperty(string key, int value)
 {
     Dict.AddProperty(key, value);
 }