'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"); }
Target Platforms: Windows 7, Windows 8, Windows 8.1, Windows 10, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012, Windows Server 2012 R2