Convert.ToDecimal Method (String)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Shared Function ToDecimal ( _
value As String _
) As Decimal
public static decimal ToDecimal(
string value
)
Parameters
- value
Type: System.String
A String containing a number to convert.
Return Value
Type: System.Decimal
A Decimal number equivalent to the value of value.
-or-
Zero if value is nulla null reference (Nothing in Visual Basic).
Exceptions
Exception | Condition |
---|---|
FormatException | value is not a number in a valid format. |
OverflowException | value represents a number less than MinValue or greater than MaxValue. |
Remarks
The return value is the result of invoking the Decimal.Parse method on value.
If you prefer not to handle an exception if the conversion fails, you can call the Decimal.TryParse method instead. It returns a Boolean value that indicates whether the conversion succeeded or failed.
Examples
The following code sample illustrates the use of ToDecimal, by attempting to convert a String to a Decimal and throwing any of the possible exceptions that may arise during the conversion.
Public Sub ConvertStringDecimal(ByVal stringVal As String)
Dim decimalVal As Decimal = 0
Try
decimalVal = System.Convert.ToDecimal(stringVal)
outputBlock.Text &= String.Format("The string as a decimal is {0}.", _
decimalVal) & vbCrLf
Catch exception As System.OverflowException
outputBlock.Text &= String.Format( _
"Overflow in string-to-decimal conversion.") & vbCrLf
Catch exception As System.FormatException
outputBlock.Text &= String.Format( _
"The string is not formatted as a decimal.") & vbCrLf
Catch exception As System.ArgumentException
outputBlock.Text &= "The string is null." & vbCrLf
End Try
' Decimal to string conversion will not overflow.
stringVal = System.Convert.ToString(decimalVal)
outputBlock.Text &= String.Format("The decimal as a string is {0}.", _
stringVal) & vbCrLf
End Sub
public void ConvertStringDecimal(string stringVal)
{
decimal decimalVal = 0;
try
{
decimalVal = System.Convert.ToDecimal(stringVal);
outputBlock.Text += String.Format(
"The string as a decimal is {0}.", decimalVal) + "\n";
}
catch (System.OverflowException)
{
outputBlock.Text += String.Format(
"The conversion from string to decimal overflowed.") + "\n";
}
catch (System.FormatException)
{
outputBlock.Text += String.Format(
"The string is not formatted as a decimal.") + "\n";
}
catch (System.ArgumentNullException)
{
outputBlock.Text += String.Format(
"The string is null.") + "\n";
}
// Decimal to string conversion will not overflow.
stringVal = System.Convert.ToString(decimalVal);
outputBlock.Text += String.Format(
"The decimal as a string is {0}.", stringVal) + "\n";
}
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.