C# Convert ToDecimal(Char)
Description
Convert ToDecimal(Char)
calling this method always
throws InvalidCastException.
Syntax
Convert.ToDecimal(Char)
has the following syntax.
public static decimal ToDecimal(
char value
)
Parameters
Convert.ToDecimal(Char)
has the following parameters.
value
- The Unicode character to convert.
Returns
Convert.ToDecimal(Char)
method returns This conversion is not supported. No value is returned.
Example
//from w w w. j a v a2s .c o m
using System;
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(Convert.ToDecimal('a'));
}
}
The code above generates the following result.