Get the TypeCode for value type Int32 in C#


To get the TypeCode for value type Int32, the code is as follows −

Example

 Live Demo

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 −

 Live Demo

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

Updated on: 11-Dec-2019

61 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements