C# String GetTypeCode() Method
You are Here:
C# String GetTypeCode()
The GetTypeCode()
method gets the underlying type code of the specified Type.
Example
C# Compiler
using System;
namespace myApp
{
class Program
{
static void Main(string[] args)
{
// creating and initializing object Type
Type type = typeof(double);
// Getting the TypeCode
TypeCode code = Type.GetTypeCode(type);
// Display the Result
Console.WriteLine("TypeCode is {0}", code);
}
}
}
Output
TypeCode is Double
Syntax
public TypeCode GetTypeCode()
Parameter Values
It does not take any parameter.
Return Value
Value | Explanation |
---|---|
TypeCode | Returns the code of the underlying type |
Empty | If the given value is null. |
Reminder
Hi Developers, we almost covered 90% of String functions and Interview Question on C# with examples for quick and easy learning.
We are working to cover every Single Concept in C#.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.