Decimal Constructor (Int32)
Initializes a new instance of Decimal to the value of the specified 32-bit signed integer.
Assembly: mscorlib (in mscorlib.dll)
The following code example creates several Decimal numbers using the constructor overload that initializes a Decimal structure with an Int32 value.
// Example of the decimal( int ) constructor. using System; class DecimalCtorIDemo { // Create a decimal object and display its value. public static void CreateDecimal( int value, string valToStr ) { decimal decimalNum = new decimal( value ); // Format the constructor for display. string ctor = String.Format( "decimal( {0} )", valToStr ); // Display the constructor and its value. Console.WriteLine( "{0,-30}{1,16}", ctor, decimalNum ); } public static void Main( ) { Console.WriteLine( "This example of the decimal( int ) " + "constructor \ngenerates the following output.\n" ); Console.WriteLine( "{0,-30}{1,16}", "Constructor", "Value" ); Console.WriteLine( "{0,-30}{1,16}", "-----------", "-----" ); // Construct decimal objects from int values. CreateDecimal( int.MinValue, "int.MinValue" ); CreateDecimal( int.MaxValue, "int.MaxValue" ); CreateDecimal( 0, "0" ); CreateDecimal( 999999999, "999999999" ); CreateDecimal( 0x40000000, "0x40000000" ); CreateDecimal( unchecked( (int)0xC0000000 ), "(int)0xC0000000" ); } } /* This example of the decimal( int ) constructor generates the following output. Constructor Value ----------- ----- decimal( int.MinValue ) -2147483648 decimal( int.MaxValue ) 2147483647 decimal( 0 ) 0 decimal( 999999999 ) 999999999 decimal( 0x40000000 ) 1073741824 decimal( (int)0xC0000000 ) -1073741824 */
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.