This documentation is archived and is not being maintained.
Convert::ToDecimal Method (Int64)
Visual Studio 2010
Converts the value of the specified 64-bit signed integer to an equivalent decimal number.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System::Int64
The 64-bit signed integer to convert.
The following example converts an Int64 value to a Decimal value.
public: void ConvertLongDecimal( Int64 longVal ) { Decimal decimalVal; // Long to decimal conversion cannot overflow. decimalVal = System::Convert::ToDecimal( longVal ); System::Console::WriteLine( " {0} as a decimal is {1}", longVal, decimalVal ); // Decimal to long conversion can overflow. try { longVal = System::Convert::ToInt64( decimalVal ); System::Console::WriteLine( " {0} as a long is {1}", decimalVal, longVal ); } catch ( System::OverflowException^ ) { System::Console::WriteLine( "Overflow in decimal-to-long conversion." ); } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: