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

◆ Equals() [2/3]

bool System.ReadOnlyMemory< T >.Equals ( ReadOnlyMemory< T > other)
inline

Definition at line 208 of file ReadOnlyMemory.cs.

209 {
210 if (_object == other._object && _index == other._index)
211 {
212 return _length == other._length;
213 }
214 return false;
215 }
readonly object _object

References System.ReadOnlyMemory< T >._index, System.ReadOnlyMemory< T >._length, System.ReadOnlyMemory< T >._object, and System.other.