Decimal Implicit Conversion (Int16 to Decimal)
Defines an implicit conversion of a 16-bit signed integer to a Decimal.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
-
Type:
System::Int16
The16-bit signed integer to convert.
The overloads of the Implicit method define the types from which the compiler can automatically convert a Decimal value without an explicit casting operator (in C#) or a call to a conversion function (in Visual Basic). They are widening conversions that do not involve data loss and do not throw an OverflowException exception.
The following example converts Int16 values to Decimal numbers.
using namespace System; void main() { // Define an array of 16-bit integer values. array<Int16>^ values = { Int16::MinValue, Int16::MaxValue, 0xFFF, 12345, -10000 }; // Convert each value to a Decimal. for each (Int16 value in values) { Decimal decValue = value; Console::WriteLine("{0} ({1}) --> {2} ({3})", value, value.GetType()->Name, decValue, decValue.GetType()->Name); } } // The example displays the following output: // -32768 (Int16) --> -32768 (Decimal) // 32767 (Int16) --> 32767 (Decimal) // 4095 (Int16) --> 4095 (Decimal) // 12345 (Int16) --> 12345 (Decimal) // -10000 (Int16) --> -10000 (Decimal)
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1