(int index, object value)
| 274 | bool IList.Contains (object value) {return (values as IList).Contains (value);} |
| 275 | int IList.IndexOf (object value) {return (values as IList).IndexOf (value);} |
| 276 | void IList.Insert (int index, object value) {(values as IList).Insert (index, value);} |
| 277 | void IList.Remove (object value) {(values as IList).Remove (value);} |
| 278 | void IList.RemoveAt (int index) {(values as IList).RemoveAt (index);} |
| 279 | bool IList.IsFixedSize {get {return false;}} |