コード例 #1
0
ファイル: Grouping.cs プロジェクト: karthikrajkumar/demo
 void ICollection <TElement> .Clear()
 {
     throw Error.NotSupported();
 }
コード例 #2
0
ファイル: Grouping.cs プロジェクト: karthikrajkumar/demo
 void ICollection <TElement> .Add(TElement item)
 {
     throw Error.NotSupported();
 }
コード例 #3
0
ファイル: Grouping.cs プロジェクト: jnm2/corefx
 void IList <TElement> .RemoveAt(int index)
 {
     throw Error.NotSupported();
 }
コード例 #4
0
ファイル: Grouping.cs プロジェクト: jnm2/corefx
 void IList <TElement> .Insert(int index, TElement item)
 {
     throw Error.NotSupported();
 }
コード例 #5
0
ファイル: Grouping.cs プロジェクト: jnm2/corefx
 bool ICollection <TElement> .Remove(TElement item)
 {
     throw Error.NotSupported();
 }
コード例 #6
0
 void IEnumerator.Reset()
 {
     throw Error.NotSupported();
 }