Open In App

Boolean.GetTypeCode Method in C# with Examples

Last Updated : 23 Apr, 2019
Comments
Improve
Suggest changes
Like Article
Like
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: csharp
// 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: csharp
// 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:

Next Article

Similar Reads