Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

Byte.GetHashCode() วิธีการใน C #


Byte.GetHashCode() วิธีการใน C# ใช้เพื่อส่งคืนรหัสแฮชสำหรับอินสแตนซ์ปัจจุบัน

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

public override int GetHashCode ();

ตัวอย่าง

ให้เราดูตัวอย่างการใช้วิธีการ Byte.GetHashCode() -

using System;
public class Demo {
   public static void Main(){
      long val = 5654665;
      byte[] arr = BitConverter.GetBytes(val);
      for (int i = 0; i < arr.Length; i++) {
         int res = arr[i].GetHashCode();
         Console.WriteLine("Hashcode = "+res);
      }
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Hashcode = 137
Hashcode = 72
Hashcode = 86
Hashcode = 0
Hashcode = 0
Hashcode = 0
Hashcode = 0
Hashcode = 0