Decimal.GetTypeCode Method ()
.NET Framework (current version)
Namespace:
System
Assembly: mscorlib (in mscorlib.dll)
Return to top
Assembly: mscorlib (in mscorlib.dll)
Implements
IConvertible.GetTypeCode()The following code example uses the GetTypeCode method to return the type code for Decimal value type.
// Example of the decimal.GetTypeCode method. using System; class DecimalGetTypeCodeDemo { public static void Main( ) { Console.WriteLine( "This example of the " + "decimal.GetTypeCode( ) \nmethod " + "generates the following output.\n" ); // Create a decimal object and get its type code. decimal aDecimal = new decimal( 1.0 ); TypeCode typCode = aDecimal.GetTypeCode( ); Console.WriteLine( "Type Code: \"{0}\"", typCode ); Console.WriteLine( "Numeric value: {0}", (int)typCode ); } } /* This example of the decimal.GetTypeCode( ) method generates the following output. Type Code: "Decimal" Numeric value: 15 */
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: