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

◆ Equals() [1/4]

override bool System.Decimal.Equals ( [NotNullWhen(true)] object? value)
inline

Definition at line 2345 of file Decimal.cs.

2346 {
2347 if (value is decimal d)
2348 {
2349 return DecCalc.VarDecCmp(in this, in d) == 0;
2350 }
2351 return false;
2352 }

References System.Runtime.Serialization.Dictionary, System.value, and System.Decimal.DecCalc.VarDecCmp().