Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ this[int index]

TElement IList<TElement>. System.Linq.Grouping< TKey, TElement >.this[int index]
getsetprivate

Definition at line 29 of file Grouping.cs.

30 {
31 get
32 {
34 {
35 ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.index);
36 }
37 return _elements[index];
38 }
39 set
40 {
41 ThrowHelper.ThrowNotSupportedException();
42 }
43 }
TElement[] _elements
Definition Grouping.cs:15