Open In App

Boolean.GetTypeCode Method in C# with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

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

Syntax: public TypeCode GetTypeCode ();

Return Value: This method returns the enumerated constant Boolean.

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

Example 1:




// C# program to illustrate the
// Boolean.GetTypeCode() Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // Taking a Boolean value
        bool s1 = true;
  
        // 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 True is: Boolean

Example 2:




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


Output:

TypeCode for True is Boolean
TypeCode for False is Boolean

Reference:



Last Updated : 23 Apr, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads