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

◆ Equals() [2/2]

bool System.ArraySegment< T >.Equals ( ArraySegment< T > obj)
inline

Definition at line 208 of file ArraySegment.cs.

209 {
210 if (obj._array == _array && obj._offset == _offset)
211 {
212 return obj._count == _count;
213 }
214 return false;
215 }
readonly T[] _array
readonly int _count
readonly int _offset

References System.ArraySegment< T >._array, System.ArraySegment< T >._count, System.ArraySegment< T >._offset, and System.obj.