指定した値を Decimal の数値に変換します。
オーバーロードの一覧
指定したブール値を等価の Decimal の数値に変換します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Shared Function ToDecimal(Boolean) As Decimal
[JScript] public static function ToDecimal(Boolean) : Decimal;
指定した 8 ビット符号なし整数値を、それと等価な Decimal の数値に変換します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Shared Function ToDecimal(Byte) As Decimal
このメソッドを呼び出すと、必ず InvalidCastException がスローされます。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Shared Function ToDecimal(Char) As Decimal
このメソッドを呼び出すと、必ず InvalidCastException がスローされます。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Shared Function ToDecimal(DateTime) As Decimal
[JScript] public static function ToDecimal(DateTime) : Decimal;
指定した Decimal 数値を返します。実際の変換処理は実行されません。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Shared Function ToDecimal(Decimal) As Decimal
[JScript] public static function ToDecimal(Decimal) : Decimal;
指定した倍精度浮動小数点数値を、それと等価な Decimal の数値に変換します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Shared Function ToDecimal(Double) As Decimal
[JScript] public static function ToDecimal(double) : Decimal;
指定した 16 ビット符号付き整数の値を等価の Decimal 数に変換します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Shared Function ToDecimal(Short) As Decimal
[JScript] public static function ToDecimal(Int16) : Decimal;
指定した 32 ビット符号付き整数の値を等価の Decimal の数値に変換します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Shared Function ToDecimal(Integer) As Decimal
指定した 64 ビット符号付き整数の値を等価の Decimal の数値に変換します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Shared Function ToDecimal(Long) As Decimal
指定した Object の値を Decimal の数値に変換します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Shared Function ToDecimal(Object) As Decimal
[JScript] public static function ToDecimal(Object) : Decimal;
指定した 8 ビット符号付き整数値を、それと等価な Decimal の数値に変換します。このメソッドは、CLS と互換性がありません。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Shared Function ToDecimal(SByte) As Decimal
[JScript] public static function ToDecimal(SByte) : Decimal;
指定した単精度浮動小数点数値を等価の Decimal の数値に変換します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Shared Function ToDecimal(Single) As Decimal
[JScript] public static function ToDecimal(float) : Decimal;
指定した String 形式の数値を、それと等価な Decimal の数値に変換します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Shared Function ToDecimal(String) As Decimal
[JScript] public static function ToDecimal(String) : Decimal;
指定した 16 ビット符号なし整数値を、それと等価な Decimal の数値に変換します。このメソッドは、CLS と互換性がありません。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Shared Function ToDecimal(UInt16) As Decimal
[JScript] public static function ToDecimal(UInt16) : Decimal;
指定した 32 ビット符号なし整数値を、それと等価な Decimal の数値に変換します。このメソッドは、CLS と互換性がありません。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Shared Function ToDecimal(UInt32) As Decimal
[JScript] public static function ToDecimal(UInt32) : Decimal;
指定した 64 ビット符号なし整数値を、それと等価な Decimal の数値に変換します。このメソッドは、CLS と互換性がありません。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Shared Function ToDecimal(UInt64) As Decimal
[JScript] public static function ToDecimal(UInt64) : Decimal;
指定したカルチャに固有の書式情報を使用して、指定した Object の値を、それと等価な Decimal 数値に変換します。
[Visual Basic] Overloads Public Shared Function ToDecimal(Object, IFormatProvider) As Decimal
[C#] public static decimal ToDecimal(object, IFormatProvider);
[C++] public: static Decimal ToDecimal(Object*, IFormatProvider*);
[JScript] public static function ToDecimal(Object, IFormatProvider) : Decimal;
指定したカルチャに固有の書式情報を使用して、指定した String 形式の数値を、それと等価な Decimal 数値に変換します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Shared Function ToDecimal(String, IFormatProvider) As Decimal
[C#] public static decimal ToDecimal(string, IFormatProvider);
[C++] public: static Decimal ToDecimal(String*, IFormatProvider*);
[JScript] public static function ToDecimal(String, IFormatProvider) : Decimal;
使用例
[Visual Basic, C#, C++] IFormatProvider オブジェクトを使用し、 String 形式の Decimal の値を ToDecimal メソッドで変換するコード例を次に示します。
[Visual Basic, C#, C++] メモ ここでは、ToDecimal のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。
' Example of the Convert.ToDecimal( String ) and
' Convert.ToDecimal( String, IFormatProvider ) methods.
Imports System
Imports System.Globalization
Imports Microsoft.VisualBasic
Module ToDecimalProviderDemo
Dim formatter As String = "{0,-22}{1,-20}{2}"
' Get the exception type name; remove the namespace prefix.
Function GetExceptionType( ex As Exception ) As String
Dim exceptionType As String = ex.GetType( ).ToString( )
GetExceptionType = exceptionType.Substring( _
exceptionType.LastIndexOf( "."c ) + 1 )
End Function
Sub ConvertToDecimal( numericStr As String, _
provider As IFormatProvider )
Dim defaultValue As Object
Dim providerValue As Object
' Convert numericStr to Decimal without a format provider.
Try
defaultValue = Convert.ToDecimal( numericStr )
Catch ex As Exception
defaultValue = GetExceptionType( ex )
End Try
' Convert numericStr to Decimal with a format provider.
Try
providerValue = Convert.ToDecimal( numericStr, provider )
Catch ex As Exception
providerValue = GetExceptionType( ex )
End Try
Console.WriteLine( formatter, numericStr, _
defaultValue, providerValue )
End Sub
Sub Main( )
' Create a NumberFormatInfo object and set several of its
' properties that apply to numbers.
Dim provider As NumberFormatInfo = new NumberFormatInfo( )
provider.NumberDecimalSeparator = ","
provider.NumberGroupSeparator = "."
provider.NumberGroupSizes = New Integer( ) { 3 }
Console.WriteLine( "This example of" & vbCrLf & _
" Convert.ToDecimal( String ) and " & vbCrLf & _
" Convert.ToDecimal( String, IFormatProvider ) " & _
vbCrLf & "generates the " & _
"following output when run in the [{0}] culture.", _
CultureInfo.CurrentCulture.Name )
Console.WriteLine( vbCrLf & _
"Several strings are converted to Decimal values, " & _
"using " & vbCrLf & "default formatting " & _
"and a NumberFormatInfo object." & vbCrLf )
Console.WriteLine( formatter, "String to convert", _
"Default/exception", "Provider/exception" )
Console.WriteLine( formatter, "-----------------", _
"-----------------", "------------------" )
' Convert strings, with and without an IFormatProvider.
ConvertToDecimal( "123456789", provider )
ConvertToDecimal( "12345.6789", provider )
ConvertToDecimal( "12345,6789", provider )
ConvertToDecimal( "123,456.789", provider )
ConvertToDecimal( "123.456,789", provider )
ConvertToDecimal( "123,456,789.0123", provider )
ConvertToDecimal( "123.456.789,0123", provider )
End Sub
End Module
' This example of
' Convert.ToDecimal( String ) and
' Convert.ToDecimal( String, IFormatProvider )
' generates the following output when run in the [en-US] culture.
'
' Several strings are converted to Decimal values, using
' default formatting and a NumberFormatInfo object.
'
' String to convert Default/exception Provider/exception
' ----------------- ----------------- ------------------
' 123456789 123456789 123456789
' 12345.6789 12345.6789 123456789
' 12345,6789 123456789 12345.6789
' 123,456.789 123456.789 FormatException
' 123.456,789 FormatException 123456.789
' 123,456,789.0123 123456789.0123 FormatException
' 123.456.789,0123 FormatException 123456789.0123
[C#]
// Example of the Convert.ToDecimal( String ) and
// Convert.ToDecimal( String, IFormatProvider ) methods.
using System;
using System.Globalization;
class ToDecimalProviderDemo
{
static string formatter = "{0,-22}{1,-20}{2}";
// Get the exception type name; remove the namespace prefix.
static string GetExceptionType( Exception ex )
{
string exceptionType = ex.GetType( ).ToString( );
return exceptionType.Substring(
exceptionType.LastIndexOf( '.' ) + 1 );
}
static void ConvertToDecimal( string numericStr,
IFormatProvider provider )
{
object defaultValue;
object providerValue;
// Convert numericStr to decimal without a format provider.
try
{
defaultValue = Convert.ToDecimal( numericStr );
}
catch( Exception ex )
{
defaultValue = GetExceptionType( ex );
}
// Convert numericStr to decimal with a format provider.
try
{
providerValue = Convert.ToDecimal( numericStr, provider );
}
catch( Exception ex )
{
providerValue = GetExceptionType( ex );
}
Console.WriteLine( formatter, numericStr, defaultValue,
providerValue );
}
static void Main( )
{
// Create a NumberFormatInfo object and set several of its
// properties that apply to numbers.
NumberFormatInfo provider = new NumberFormatInfo( );
provider.NumberDecimalSeparator = ",";
provider.NumberGroupSeparator = ".";
provider.NumberGroupSizes = new int[ ] { 3 };
Console.WriteLine(
"This example of\n Convert.ToDecimal( String ) and \n" +
" Convert.ToDecimal( String, IFormatProvider ) \n" +
"generates the following output when run in the " +
"[{0}] culture.",
CultureInfo.CurrentCulture.Name );
Console.WriteLine( "\nSeveral " +
"strings are converted to decimal values, using \n" +
"default formatting and a NumberFormatInfo object.\n");
Console.WriteLine( formatter, "String to convert",
"Default/exception", "Provider/exception" );
Console.WriteLine( formatter, "-----------------",
"-----------------", "------------------" );
// Convert strings, with and without an IFormatProvider.
ConvertToDecimal( "123456789", provider );
ConvertToDecimal( "12345.6789", provider );
ConvertToDecimal( "12345,6789", provider );
ConvertToDecimal( "123,456.789", provider );
ConvertToDecimal( "123.456,789", provider );
ConvertToDecimal( "123,456,789.0123", provider );
ConvertToDecimal( "123.456.789,0123", provider );
}
}
/*
This example of
Convert.ToDecimal( String ) and
Convert.ToDecimal( String, IFormatProvider )
generates the following output when run in the [en-US] culture.
Several strings are converted to decimal values, using
default formatting and a NumberFormatInfo object.
String to convert Default/exception Provider/exception
----------------- ----------------- ------------------
123456789 123456789 123456789
12345.6789 12345.6789 123456789
12345,6789 123456789 12345.6789
123,456.789 123456.789 FormatException
123.456,789 FormatException 123456.789
123,456,789.0123 123456789.0123 FormatException
123.456.789,0123 FormatException 123456789.0123
*/
[C++]
// Example of the Convert::ToDecimal( String ) and
// Convert::ToDecimal( String, IFormatProvider ) methods.
#using <mscorlib.dll>
using namespace System;
using namespace System::Globalization;
const __wchar_t* formatter = L"{0,-22}{1,-20}{2}";
// Get the exception type name; remove the namespace prefix.
String* GetExceptionType( Exception* ex )
{
String* exceptionType = ex->GetType( )->ToString( );
return exceptionType->Substring(
exceptionType->LastIndexOf( '.' ) + 1 );
}
void ConvertToDecimal( String* numericStr,
IFormatProvider* provider )
{
Object* defaultValue;
Object* providerValue;
// Convert numericStr to Decimal without a format provider.
try
{
defaultValue = __box( Convert::ToDecimal( numericStr ) );
}
catch( Exception* ex )
{
defaultValue = GetExceptionType( ex );
}
// Convert numericStr to Decimal with a format provider.
try
{
providerValue = __box(
Convert::ToDecimal( numericStr, provider ) );
}
catch( Exception* ex )
{
providerValue = GetExceptionType( ex );
}
Console::WriteLine( new String( formatter ), numericStr,
defaultValue, providerValue );
}
void main( )
{
// Create a NumberFormatInfo object and set several of its
// properties that apply to numbers.
NumberFormatInfo* provider = new NumberFormatInfo( );
provider->NumberDecimalSeparator = S",";
provider->NumberGroupSeparator = S".";
Int32 sizes __gc [] = { 3 };
provider->NumberGroupSizes = sizes;
Console::WriteLine(
S"This example of\n Convert::ToDecimal( String* ) and \n"
S" Convert::ToDecimal( String*, IFormatProvider* ) \n"
S"generates the following output when run in the "
S"[{0}] culture.",
CultureInfo::CurrentCulture->Name );
Console::WriteLine( S"\nSeveral "
S"strings are converted to Decimal values, using \n"
S"default formatting and a NumberFormatInfo object.\n");
Console::WriteLine( new String( formatter ), S"String to convert",
S"Default/exception", S"Provider/exception" );
Console::WriteLine( new String( formatter ), S"-----------------",
S"-----------------", S"------------------" );
// Convert strings, with and without an IFormatProvider.
ConvertToDecimal( S"123456789", provider );
ConvertToDecimal( S"12345.6789", provider );
ConvertToDecimal( S"12345,6789", provider );
ConvertToDecimal( S"123,456.789", provider );
ConvertToDecimal( S"123.456,789", provider );
ConvertToDecimal( S"123,456,789.0123", provider );
ConvertToDecimal( S"123.456.789,0123", provider );
}
/*
This example of
Convert::ToDecimal( String* ) and
Convert::ToDecimal( String*, IFormatProvider* )
generates the following output when run in the [en-US] culture.
Several strings are converted to Decimal values, using
default formatting and a NumberFormatInfo object.
String to convert Default/exception Provider/exception
----------------- ----------------- ------------------
123456789 123456789 123456789
12345.6789 12345.6789 123456789
12345,6789 123456789 12345.6789
123,456.789 123456.789 FormatException
123.456,789 FormatException 123456.789
123,456,789.0123 123456789.0123 FormatException
123.456.789,0123 FormatException 123456789.0123
*/
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。