|
Cet article a fait l'objet d'une traduction automatique. Déplacez votre pointeur sur les phrases de l'article pour voir la version originale de ce texte. Informations supplémentaires.
|
Traduction
Source
|
Decimal.LessThan, opérateur
.NET Framework 4.5
Espace de noms : System
Assembly : mscorlib (dans mscorlib.dll)
Paramètres
- d1
- Type : System.Decimal
Première valeur à comparer.
- d2
- Type : System.Decimal
Deuxième valeur à comparer.
// Example of the decimal relational operators. using System; class DecRelationalOpsDemo { const string dataFmt = "{0,43} {1}" ; // Compare decimal parameters, and display them with the results. static void CompareDecimals( decimal Left, decimal Right, string RightText ) { Console.WriteLine( ); Console.WriteLine( dataFmt, "Right: " + RightText, Right ); Console.WriteLine( dataFmt, "Left == Right", Left == Right ); Console.WriteLine( dataFmt, "Left > Right", Left > Right ); Console.WriteLine( dataFmt, "Left >= Right", Left >= Right ); Console.WriteLine( dataFmt, "Left != Right", Left != Right ); Console.WriteLine( dataFmt, "Left < Right", Left < Right ); Console.WriteLine( dataFmt, "Left <= Right", Left <= Right ); } static void Main( ) { decimal Left = new decimal( 123.456 ); Console.WriteLine( "This example of the decimal relational operators " + "generates the \nfollowing output. It creates several " + "different decimal values \nand compares them with " + "the following reference value.\n" ); Console.WriteLine( dataFmt, "Left: decimal( 123.456 )", Left ); // Create objects to compare with a 2-hour decimal. CompareDecimals( Left, new decimal( 1.23456E+2 ), "decimal( 1.23456E+2 )" ); CompareDecimals( Left, new decimal( 123.4567 ), "decimal( 123.4567 )" ); CompareDecimals( Left, new decimal( 123.4553 ), "decimal( 123.4553 )" ); CompareDecimals( Left, new decimal( 123456000, 0, 0, false, 6 ), "decimal( 123456000, 0, 0, false, 6 )" ); } } /* This example of the decimal relational operators generates the following output. It creates several different decimal values and compares them with the following reference value. Left: decimal( 123.456 ) 123.456 Right: decimal( 1.23456E+2 ) 123.456 Left == Right True Left > Right False Left >= Right True Left != Right False Left < Right False Left <= Right True Right: decimal( 123.4567 ) 123.4567 Left == Right False Left > Right False Left >= Right False Left != Right True Left < Right True Left <= Right True Right: decimal( 123.4553 ) 123.4553 Left == Right False Left > Right True Left >= Right True Left != Right True Left < Right False Left <= Right False Right: decimal( 123456000, 0, 0, false, 6 ) 123.456000 Left == Right True Left > Right False Left >= Right True Left != Right False Left < Right False Left <= Right True */
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (rôle principal du serveur non pris en charge), Windows Server 2008 R2 (rôle principal du serveur pris en charge avec SP1 ou version ultérieure ; Itanium non pris en charge)
Le .NET Framework ne prend pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.