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

◆ Equals() [2/3]

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

Definition at line 268 of file Memory.cs.

269 {
270 if (_object == other._object && _index == other._index)
271 {
272 return _length == other._length;
273 }
274 return false;
275 }
readonly int _length
Definition Memory.cs:19
readonly object _object
Definition Memory.cs:15
readonly int _index
Definition Memory.cs:17

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