Returns the TypeCode for value type Decimal. : decimal « Data Types « C# / C Sharp






Returns the TypeCode for value type Decimal.

 

using System;

class DecimalGetTypeCodeDemo
{
    public static void Main( )
    {
        decimal aDecimal = new decimal( 1.0 );
        TypeCode typCode = aDecimal.GetTypeCode( );

        Console.WriteLine( "Type Code:      \"{0}\"", typCode );
        Console.WriteLine( "Numeric value:  {0}", (int)typCode );
    }
}

   
  








Related examples in the same category

1.Compute the regular payments for a loanCompute the regular payments for a loan
2.Using Decimals
3.Use the decimal type to compute a discount. Use the decimal type to compute a discount.
4.Use the decimal type to compute the future value of an investmentUse the decimal type to compute the future value 
   of an investment
5.Compute the initial investment needed to attain a known future value given Compute the initial investment needed to attain 
   a known future value given
6.Manually create a decimal numberManually create a decimal number
7.decimal property
8.explicit conversions from decimal to int
9.Convert decimal to integer
10.Parse string using "$" as the currency symbol for en-GB and en-us cultures.
11.Rounds a Decimal value to a specified number of decimal places.
12.Decimal.ToDouble
13.Converts Decimal to the equivalent 8-bit unsigned integer.
14.Parse string using "." as the thousands separator and " " as the decimal separator.
15.Converts string to Decimal using the specified style and culture-specific format.
16.Decimal.MinValue Field: represents the smallest possible value of Decimal.
17.Converts the string to its Decimal equivalent
18.Create decimal number from double
19.Decimal.Ceiling Method
20.Decimal.ToInt16
21.Converts Decimal to the equivalent 32-bit signed integer.
22.Converts the value of the specified Decimal to the equivalent 64-bit signed integer.
23.Converts Decimal to OLE Automation Currency value
24.Converts Decimal to the equivalent 8-bit signed integer.
25.Converts Decimal to the equivalent single-precision floating-point number.
26.Converts Decimal to string using the specified culture-specific format information.
27.Converts decimal to string using standard format and culture
28.Converts decimal to string to ToString method and format
29.Converts Decimal to the 16-bit unsigned integer.
30.Converts Decimal to the 32-bit unsigned integer.
31.Converts Decimal to 64-bit unsigned integer.
32.Converts string to decimal. A return value indicates whether the conversion succeeded or failed.
33.Parse currency value using en-GB culture.
34.Parse a string to decimal with NumberStyles.AllowDecimalPoint
35.Parse a string to decimal with NumberStyles.AllowDecimalPoint | NumberStyles.AllowThousands
36.Decimal fields: Zero, MinValue, MaxValue, One
37.Converts a Decimal to an 8-bit unsigned integer.