This documentation is archived and is not being maintained.
Decimal::GetTypeCode Method
Visual Studio 2010
Namespace: System
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 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 */
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: