コード例 #1
0
 void IList.RemoveAt(int index) => ThrowHelper.ThrowCollectionIsReadonly();
コード例 #2
0
 void IList.Remove(object value) => ThrowHelper.ThrowCollectionIsReadonly();
コード例 #3
0
 void IList.Insert(int index, object value) => ThrowHelper.ThrowCollectionIsReadonly();
コード例 #4
0
 void IList.Clear() => ThrowHelper.ThrowCollectionIsReadonly();
コード例 #5
0
 int IList.Add(object value) => ThrowHelper.ThrowCollectionIsReadonly <int>();
コード例 #6
0
 object IList.this[int index]
 {
     get { return(this[index]); }
     set { ThrowHelper.ThrowCollectionIsReadonly(); }
 }