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

◆ Equals()

override bool System.ComponentModel.InterlockedBitVector32.Equals ( [NotNullWhen(true)] object o)
inline

Definition at line 48 of file InterlockedBitVector32.cs.

49 {
50 if (o is InterlockedBitVector32 interlockedBitVector)
51 {
52 return _data == interlockedBitVector._data;
53 }
54 return false;
55 }

References System.ComponentModel.InterlockedBitVector32._data.