
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Get TypeCode in C#
To get TypeCode in C#, the code is as follows −
Example
using System; public class Demo { public static void Main(){ string s = "Demo"; Console.WriteLine("String = " +s); Console.WriteLine("String Type = " +s.GetType()); Console.WriteLine("GetTypeCode = " +s.GetTypeCode()); } }
Output
This will produce the following output −
String = Demo String Type = System.String GetTypeCode = String
Example
Let us now see another example −
using System; public class Demo { public static void Main(){ int i = 100; double d = 5.26d; Console.WriteLine("Value1 = " +i); Console.WriteLine("GetType = " +i.GetType()); Console.WriteLine("GetTypeCode = " +i.GetTypeCode()); Console.WriteLine("
Value2 = " +d); Console.WriteLine("GetType = " +d.GetType()); Console.WriteLine("GetTypeCode = " +d.GetTypeCode()); } }
Output
This will produce the following output −
Value1 = 100 GetType = System.Int32 GetTypeCode = Int32 Value2 = 5.26 GetType = System.Double GetTypeCode = Double
Advertisements