কম্পিউটার

C# এ Boolean.GetHashCode() পদ্ধতি উদাহরণ সহ


C#-এ Boolean.GetHashCode() পদ্ধতিটি এই উদাহরণের জন্য হ্যাশ কোড ফেরত দিতে ব্যবহৃত হয়।

সিনট্যাক্স

public override int GetHashCode ();

উদাহরণ

using System;
public class Demo {
   public static void Main(String[] args){
      string str = "JackSparrow!";
      bool val = true;
      char[] arr = { 'J', 'a'};
      Console.WriteLine("String = "+str);
      Console.WriteLine("String (after trim) = " + str.Trim(arr));
      Console.WriteLine("String (Hashcode) = "+str.GetHashCode());
      Console.WriteLine("Bool (Hashcode) = "+val.GetHashCode());
   }
}

আউটপুট

String = JackSparrow!
String (after trim) = ckSparrow!
String (Hashcode) = -203134198
Bool (Hashcode) = 1

উদাহরণ

using System;
public class Demo {
   public static void Main(String[] args) {
      bool val1 = true;
      bool val2 = false;
      Console.WriteLine("Value1 (Hashcode) = "+val1.GetHashCode());
      Console.WriteLine("Value1 (TypeCode) = "+val1.GetTypeCode());
      Console.WriteLine("Value2 (Hashcode) = "+val2.GetHashCode());
      Console.WriteLine("Value2 (TypeCode) = "+val2.GetTypeCode());
   }
}

আউটপুট

Value1  (Hashcode) = 1
Value1 (TypeCode) = Boolean
Value2  (Hashcode) = 0
Value2 (TypeCode) = Boolean

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

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

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

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