Single.GetTypeCode method is used to get the TypeCode for value type Single.
csharp
csharp
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:
Example 2:
TypeCode for 56 is: Single
// 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:
Reference:
TypeCode for -3.402823E+38 is Single TypeCode for 3.402823E+38 is Single