Int16.GetTypeCode Method in C# with Examples



The Int16.GetTypeCode() method in C# is used to return the TypeCode for value type Int16.

Syntax

Following is the syntax −

public TypeCode GetTypeCode ();

Example

Let us now see an example to implement the Int16.GetTypeCode() method −

using System; public class Demo {    public static void Main(){       short val1 = 0;       short val2 = Int16.MaxValue;       Console.WriteLine("Value1 = "+val1);       Console.WriteLine("Value2 = "+val2);       Console.WriteLine("HashCode for value1 = "+val1.GetHashCode());       Console.WriteLine("HashCode for value2 = "+val2.GetHashCode());       Console.WriteLine("Are they equal? = "+(val1.Equals(val2)));       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 −

Value1 = 0 Value2 = 32767 HashCode for value1 = 0 HashCode for value2 = 2147450879 Are they equal? = False TypeCode for val1 = Int16 TypeCode for val2 = Int16

Example

Let us now see another example to implement the Int16.GetTypeCode() method −

using System; public class Demo {    public static void Main(){       short val1 = 23;       short val2 = 0;       Console.WriteLine("Value1 = "+val1);       Console.WriteLine("Value2 = "+val2);       Console.WriteLine("HashCode for value1 = "+val1.GetHashCode());       Console.WriteLine("HashCode for value2 = "+val2.GetHashCode());       Console.WriteLine("Are they equal? = "+(val1.Equals(val2)));       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 −

Value1 = 23 Value2 = 0 HashCode for value1 = 1507351 HashCode for value2 = 0 Are they equal? = False TypeCode for val1 = Int16 TypeCode for val2 = Int16
Updated on: 2019-11-11T06:45:31+05:30

118 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements