The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
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 namespace System; int 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 = 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: