次の方法で共有


Decimal から UInt16 への変換

Decimal を 16 ビット符号なし整数に変換します。

この型変換は、CLS と互換性がありません。CLS との互換性に関する詳細については 「共通言語仕様の概要」 を参照してください。

<CLSCompliant(False)>
returnValue = Decimal.op_Explicit(value)
[C#]
[CLSCompliant(false)]
public static explicit operator ushort(decimalvalue);
[C++]
[CLSCompliant(false)]
public: static unsigned short op_Explicit();
[JScript]
returnValue = UInt16(value);

[Visual Basic] Visual Basic では、この型で定義されている型変換を使用することができます。ただし、独自に定義することはできません。Decimal から UInt16 への変換の代わりに、ToUInt16 メソッドを使用できます。

[JScript] JScript では、この型で定義されている型変換を使用することができます。ただし、独自に定義することはできません。

引数 [Visual Basic, JScript]

パラメータ [C#]

戻り値

変換された Decimal を表す 16 ビット符号なし整数。

例外

例外の種類 条件
OverflowException value が UInt16.MaxValue より大きい値か、 UInt16.MinValue より小さい値です。

使用例

[C#, C++] 明示的な Decimal to UInt16 変換を使用して Decimal の数値を UInt16 の値に変換するコード例を次に示します。

 
// Example of the explicit conversions from decimal to short and 
// decimal to ushort.
using System;

class DecimalToU_Int16Demo
{
    const string formatter = "{0,16}{1,19}{2,19}";

    // Get the exception type name; remove the namespace prefix.
    public static string GetExceptionType( Exception ex )
    {
        string exceptionType = ex.GetType( ).ToString( );
        return exceptionType.Substring( 
            exceptionType.LastIndexOf( '.' ) + 1 );
    }

    // Convert the decimal argument; catch exceptions that are thrown.
    public static void DecimalToU_Int16( decimal argument )
    {
        object Int16Value;
        object UInt16Value;

        // Convert the argument to a short value.
        try
        {
            Int16Value = (short)argument;
        }
        catch( Exception ex )
        {
            Int16Value = GetExceptionType( ex );
        }

        // Convert the argument to a ushort value.
        try
        {
            UInt16Value = (ushort)argument;
        }
        catch( Exception ex )
        {
            UInt16Value = GetExceptionType( ex );
        }

        Console.WriteLine( formatter, argument, 
            Int16Value, UInt16Value );
    }

    public static void Main( )
    {
        Console.WriteLine( 
            "This example of the explicit conversions from decimal " +
            "to short \nand decimal to ushort generates the " +
            "following output. It displays \nseveral converted " +
            "decimal values.\n" );
        Console.WriteLine( formatter, "decimal argument", 
            "short/exception", "ushort/exception" );
        Console.WriteLine( formatter, "----------------", 
            "---------------", "----------------" );

        // Convert decimal values and display the results.
        DecimalToU_Int16( 123M );
        DecimalToU_Int16( new decimal( 123000, 0, 0, false, 3 ) );
        DecimalToU_Int16( 123.999M );
        DecimalToU_Int16( 65535.999M );
        DecimalToU_Int16( 65536M );
        DecimalToU_Int16( 32767.999M );
        DecimalToU_Int16( 32768M );
        DecimalToU_Int16( - 0.999M );
        DecimalToU_Int16( - 1M );
        DecimalToU_Int16( - 32768.999M );
        DecimalToU_Int16( - 32769M );
    }
}

/*
This example of the explicit conversions from decimal to short
and decimal to ushort generates the following output. It displays
several converted decimal values.

decimal argument    short/exception   ushort/exception
----------------    ---------------   ----------------
             123                123                123
         123.000                123                123
         123.999                123                123
       65535.999  OverflowException              65535
           65536  OverflowException  OverflowException
       32767.999              32767              32767
           32768  OverflowException              32768
          -0.999                  0                  0
              -1                 -1  OverflowException
      -32768.999             -32768  OverflowException
          -32769  OverflowException  OverflowException
*/

[C++] 
// Example of the explicit conversions from Decimal to short and 
// Decimal to unsigned short.
#using <mscorlib.dll>
using namespace System;

const __wchar_t* formatter = L"{0,16}{1,19}{2,19}";

// Get the exception type name; remove the namespace prefix.
String* GetExceptionType( Exception* ex )
{
    String* exceptionType = ex->GetType( )->ToString( );
    return exceptionType->Substring( 
        exceptionType->LastIndexOf( '.' ) + 1 );
}

// Convert the Decimal argument; catch exceptions that are thrown.
void DecimalToU_Int16( Decimal argument )
{
    Object* Int16Value;
    Object* UInt16Value;

    // Convert the argument to a short value.
    try
    {
        Int16Value = __box( (short)argument );
    }
    catch( Exception* ex )
    {
        Int16Value = GetExceptionType( ex );
    }

    // Convert the argument to an unsigned short value.
    try
    {
        UInt16Value = __box( (unsigned short)argument );
    }
    catch( Exception* ex )
    {
        UInt16Value = GetExceptionType( ex );
    }

    Console::WriteLine( formatter, __box( argument ), 
        Int16Value, UInt16Value );
}

void main( )
{
    Console::WriteLine(  
        S"This example of the explicit conversions from Decimal to " 
        S"short \nand Decimal to unsigned short generates the " 
        S"following output. \nIt displays several converted Decimal " 
        S"values.\n" );
    Console::WriteLine( formatter, S"Decimal argument", 
        S"short", S"unsigned short" );
    Console::WriteLine( formatter, S"----------------", 
        S"-----", S"--------------" );

    // Convert Decimal values and display the results.
    DecimalToU_Int16( Decimal::Parse( "123" ) );
    DecimalToU_Int16( Decimal( 123000, 0, 0, false, 3 ) );
    DecimalToU_Int16( Decimal::Parse( "123.999" ) );
    DecimalToU_Int16( Decimal::Parse( "65535.999" ) );
    DecimalToU_Int16( Decimal::Parse( "65536" ) );
    DecimalToU_Int16( Decimal::Parse( "32767.999" ) );
    DecimalToU_Int16( Decimal::Parse( "32768" ) );
    DecimalToU_Int16( Decimal::Parse( "-0.999" ) );
    DecimalToU_Int16( Decimal::Parse( "-1" ) );
    DecimalToU_Int16( Decimal::Parse( "-32768.999" ) );
    DecimalToU_Int16( Decimal::Parse( "-32769" ) );
}

/*
This example of the explicit conversions from Decimal to short
and Decimal to unsigned short generates the following output.
It displays several converted Decimal values.

Decimal argument              short     unsigned short
----------------              -----     --------------
             123                123                123
         123.000                123                123
         123.999                123                123
       65535.999  OverflowException              65535
           65536  OverflowException  OverflowException
       32767.999              32767              32767
           32768  OverflowException              32768
          -0.999                  0                  0
              -1                 -1  OverflowException
      -32768.999             -32768  OverflowException
          -32769  OverflowException  OverflowException
*/

[Visual Basic, JScript] Visual Basic および JScript のサンプルはありません。C# および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET, Common Language Infrastructure (CLI) Standard

参照

Decimal 構造体 | Decimal メンバ | System 名前空間 | UInt16