Decimal.GetTypeCode Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Assembly: mscorlib (in mscorlib.dll)
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 Example { public static void Demo(System.Windows.Controls.TextBlock outputBlock) { outputBlock.Text += "This example of the " + "decimal.GetTypeCode( ) \nmethod " + "generates the following output.\n" + "\n"; // Create a decimal object and get its type code. decimal aDecimal = new decimal(1.0); TypeCode typCode = aDecimal.GetTypeCode(); outputBlock.Text += String.Format("Type Code: \"{0}\"", typCode) + "\n"; outputBlock.Text += String.Format("Numeric value: {0}", (int)typCode) + "\n"; } } /* This example of the decimal.GetTypeCode( ) method generates the following output. Type Code: "Decimal" Numeric value: 15 */
Show: