
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 for Value Type UInt32 in C#
To get the TypeCode for value type UInt32, the code is as follows −
Example
using System; public class Demo { public static void Main() { uint val1 = 55; uint val2 = 100; TypeCode type1 = val1.GetTypeCode(); TypeCode type2 = val2.GetTypeCode(); Console.WriteLine("Typecode for val1 = "+type1); Console.WriteLine("Typecode for val2 = "+type2); } }
Output
This will produce the following output −
Typecode for val1 = UInt32 Typecode for val2 = UInt32
Example
Let us see another example −
using System; public class Demo { public static void Main() { uint val1 = UInt32.MinValue; uint val2 = 0; TypeCode type1 = val1.GetTypeCode(); TypeCode type2 = val2.GetTypeCode(); Console.WriteLine("Typecode for val1 = "+type1); Console.WriteLine("Typecode for val2 = "+type2); } }
Output
This will produce the following output −
Typecode for val1 = UInt32 Typecode for val2 = UInt32
Advertisements