কম্পিউটার

উদাহরণ সহ C# এ SByte.GetTypeCode পদ্ধতি


C#-এ SByte.GetTypeCode() পদ্ধতিটি SByte মানের জন্য TypeCode ফেরত দিতে ব্যবহৃত হয়।

সিনট্যাক্স

সিনট্যাক্স নিম্নরূপ -

public TypeCode GetTypeCode ();

উদাহরণ

আসুন এখন একটি উদাহরণ দেখি -

using System;
public class Demo {
   public static void Main() {
      sbyte s1 = 55;
      object s2 = (sbyte)55;
      Console.WriteLine("Value of S1 = "+s1);
      Console.WriteLine("Value of S2 = "+s2);
      int res = s1.CompareTo(s2);
      if (res > 0)
         Console.WriteLine("s1 > s2");
      else if (res < 0)
         Console.WriteLine("s1 < s2");
      else
         Console.WriteLine("s1 = s2");
      Console.WriteLine("HashCode for s1 = "+s1.GetHashCode());
      Console.WriteLine("GetTypeCode for s1 = "+s1.GetTypeCode());
      Console.WriteLine("HashCode for s2 = "+s2.GetHashCode());
   }
}

আউটপুট

এটি নিম্নলিখিত আউটপুট −

তৈরি করবে
Value of S1 = 55
Value of S2 = 55
s1 = s2
HashCode for s1 = 14135
GetTypeCode for s1 = SByte
HashCode for s2 = 14135

উদাহরণ

এখন আরেকটি উদাহরণ দেখা যাক -

using System;
public class Demo {
   public static void Main() {
      sbyte s1 = 10;
      sbyte s2 = 100;
      Console.WriteLine("Value of S1 = "+s1);
      Console.WriteLine("Value of S2 = "+s2);
      int res = s1.CompareTo(s2);
      if (res > 0)
         Console.WriteLine("s1 > s2");
      else if (res < 0)
         Console.WriteLine("s1 < s2");
      else
         Console.WriteLine("s1 = s2");
      Console.WriteLine("HashCode for s1 = "+s1.GetHashCode());
      Console.WriteLine("GetTypeCode for s1 = "+s1.GetTypeCode());
      Console.WriteLine("HashCode for s2 = "+s2.GetHashCode());
      Console.WriteLine("GetTypeCode for s2 = "+s2.GetTypeCode());
   }
}

আউটপুট

এটি নিম্নলিখিত আউটপুট −

তৈরি করবে
Value of S1 = 10
Value of S2 = 100
s1 < s2
HashCode for s1 = 2570
GetTypeCode for s1 = SByte
HashCode for s2 = 25700
GetTypeCode for s2 = SByte

  1. উদাহরণ সহ C# এ UInt32.GetTypeCode() পদ্ধতি

  2. উদাহরণ সহ C# এ UInt64.GetTypeCode() পদ্ধতি

  3. C# এ Int32.GetTypeCode পদ্ধতি উদাহরণ সহ

  4. উদাহরণ সহ C# এ UInt16.GetTypeCode() পদ্ধতি