This documentation is archived and is not being maintained.
Decimal Implicit Conversion (UInt16 to Decimal)
Visual Studio 2010
Converts a 16-bit unsigned integer to a Decimal.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System::UInt16
The 16-bit unsigned integer to convert.
The following code example converts UInt16 values to Decimal numbers using the UInt16 to Decimal conversion. This conversion is implicit in C#, but requires the op_Implicit operator in Visual Basic and C++. Implicit conversions to Decimal use other methods in these languages.
// Example of the op_Implicit conversion from unsigned short to Decimal. using namespace System; #define formatter "{0,14}{1,15}{2,10:X8}{3,9:X8}{4,9:X8}{5,9:X8}" // Convert the unsigned short argument and display the Decimal value. void DecimalFromUInt16( unsigned short argument ) { Decimal decValue; array<Int32>^bits; // The compiler invokes a constructor in the Managed Extensions // for C++ unless op_Implicit is explicitly called. decValue = argument; // Display the Decimal and its binary representation. bits = Decimal::GetBits( decValue ); Console::WriteLine( formatter, argument, decValue, bits[ 3 ], bits[ 2 ], bits[ 1 ], bits[ 0 ] ); } int main() { Console::WriteLine( "This example of the op_Implicit conversion from unsigned " "short to Decimal \ngenerates the following output. " "It displays the Decimal value and its \nbinary " "representation.\n" ); Console::WriteLine( formatter, "unsigned short", "Decimal value", "bits[3]", "bits[2]", "bits[1]", "bits[0]" ); Console::WriteLine( formatter, "--------------", "-------------", "-------", "-------", "-------", "-------" ); // Convert unsigned short and display the results. DecimalFromUInt16( UInt16::MinValue ); DecimalFromUInt16( UInt16::MaxValue ); DecimalFromUInt16( 0xFFF ); DecimalFromUInt16( 12345 ); DecimalFromUInt16( 40000 ); } /* This example of the op_Implicit conversion from unsigned short to Decimal generates the following output. It displays the Decimal value and its binary representation. unsigned short Decimal value bits[3] bits[2] bits[1] bits[0] -------------- ------------- ------- ------- ------- ------- 0 0 00000000 00000000 00000000 00000000 65535 65535 00000000 00000000 00000000 0000FFFF 4095 4095 00000000 00000000 00000000 00000FFF 12345 12345 00000000 00000000 00000000 00003039 40000 40000 00000000 00000000 00000000 00009C40 */
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: