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