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

◆ Equals() [1/5]

override bool System.Collections.Immutable.ImmutableArray< T >.Equals ( [NotNullWhen(true)] object? obj)
inline

Definition at line 1658 of file ImmutableArray.cs.

1659 {
1660 if (obj is IImmutableArray immutableArray)
1661 {
1662 return array == immutableArray.Array;
1663 }
1664 return false;
1665 }

References System.Collections.Immutable.ImmutableArray< T >.array, and System.obj.