Boolean.GetTypeCode method is used to get the TypeCode for value type Boolean.
csharp
csharp
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:
Example 2:
TypeCode for True is: Boolean
// 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:
Reference:
TypeCode for True is Boolean TypeCode for False is Boolean