Open In App

Single.GetTypeCode Method in C# with Examples

Last Updated : 01 May, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

Single.GetTypeCode method is used to get the TypeCode for value type Single.

Syntax: public TypeCode GetTypeCode ();

Return Value: This method returns the enumerated constant Single.

Below programs illustrate the use of the above discussed-method:

Example 1:




// C# program to illustrate the
// Single.GetTypeCode() Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // Taking sbyte value
        float s1 = 56;
  
        // Getting the typecode
        // using GetTypeCode() method
        TypeCode result = s1.GetTypeCode();
  
        // Display the TypeCode
        Console.WriteLine("TypeCode for {0} is: {1}",
                                         s1, result);
    }
}


Output:

TypeCode for 56 is: Single

Example 2:




// C# program to illustrate the
// Single.GetTypeCode() Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        // using result() Method
        result(Single.MinValue);
        result(Single.MaxValue);
    }
  
    // result() method
    public static void result(float val)
    {
  
        // using GetTypeCode() method
        TypeCode code = val.GetTypeCode();
  
        // Display the TypeCode
        Console.WriteLine("TypeCode for {0} is {1}",
                                         val, code);
    }
}


Output:

TypeCode for -3.402823E+38 is Single
TypeCode for 3.402823E+38 is Single

Reference:



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads