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

◆ this[int index] [2/3]

T IList<T>. System.ArraySegment< T >.this[int index]
getset

Definition at line 103 of file ArraySegment.cs.

104 {
105 get
106 {
109 {
110 ThrowHelper.ThrowArgumentOutOfRange_IndexException();
111 }
112 return _array[_offset + index];
113 }
114 set
115 {
118 {
119 ThrowHelper.ThrowArgumentOutOfRange_IndexException();
120 }
122 }
123 }
readonly T[] _array
void ThrowInvalidOperationIfDefault()
readonly int _count
readonly int _offset