
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 Int32 in C#
To get the TypeCode for value type Int32, the code is as follows −
Example
using System; public class Demo { public static void Main() { int val1 = 100; int val2 = 50; Console.WriteLine("Value1 = "+val1); Console.WriteLine("Value2 = "+val2); Console.WriteLine("Are they equal? = "+val1.Equals(val2)); Console.WriteLine("HashCode for Value1 = "+val1.GetHashCode()); Console.WriteLine("HashCode for Value2 = "+val2.GetHashCode()); TypeCode type1 = val1.GetTypeCode(); TypeCode type2 = val2.GetTypeCode(); Console.WriteLine("TypeCode for Value1 = "+type1); Console.WriteLine("TypeCode for Value2 = "+type2); } }
Output
This will produce the following output −
Value1 = 100 Value2 = 50 Are they equal? = False HashCode for Value1 = 100 HashCode for Value2 = 50 TypeCode for Value1 = Int32 TypeCode for Value2 = Int32
Example
Let us see another example −
using System; public class Demo { public static void Main() { int val1 = 5; int val2 = Int32.MaxValue; Console.WriteLine("Value1 = "+val1); Console.WriteLine("Value2 = "+val2); TypeCode type1 = val1.GetTypeCode(); TypeCode type2 = val2.GetTypeCode(); Console.WriteLine("TypeCode for Value1 = "+type1); Console.WriteLine("TypeCode for Value2 = "+type2); } }
Output
This will produce the following output −
Value1 = 5 Value2 = 2147483647 TypeCode for Value1 = Int32 TypeCode for Value2 = Int32
Advertisements