public int IndexOf(KeyValue value) { return(this.List.IndexOf(value)); }
public bool Contains(KeyValue value) { return(this.List.Contains(value)); }
public int Add(string key, object value) { KeyValue entity = new KeyValue(key, value); return(List.Add(entity)); }
public void Remove(KeyValue entity) { List.Remove(entity); }
public int Add(KeyValue entity) { return(List.Add(entity)); }