'Declaration Public Overloads Shared Function Equals( _ ByVal left As TdDecimal, _ ByVal right As TdDecimal _ ) As Boolean
Parameters
- left
- A TdDecimal instance.
- right
- A TdDecimal instance.
'Declaration Public Overloads Shared Function Equals( _ ByVal left As TdDecimal, _ ByVal right As TdDecimal _ ) As Boolean
// The M is used to indicate that the numeric literal is a System.Decimal TdDecimal large = new TdDecimal(32425643243167.43433M); TdDecimal medium = new TdDecimal(89732.4543M); // The following comparison methods and operators are equivalent if (false == TdDecimal.Equals(large, medium) || large != medium || true == TdDecimal.NotEquals(large, medium) ) { Console.WriteLine("large does not equal medium"); }
Product | Versions | Platforms |
---|---|---|
.NET | 6, 7 | Windows, Linux, MacOS |
.NET Framework | 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8 | Windows |
.NET Standard | 2.0 | Windows, Linux, MacOS |