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

◆ Equals()

override bool System.Nullable< T >.Equals ( object? other)
inline

Definition at line 60 of file Nullable.cs.

61 {
62 if (!hasValue)
63 {
64 return other == null;
65 }
66 if (other == null)
67 {
68 return false;
69 }
70 return value.Equals(other);
71 }
readonly bool hasValue
Definition Nullable.cs:12

References System.Nullable< T >.hasValue, System.other, and System.Nullable< T >.value.