MongoDB.Types.ObjectId.GetHashCode C# (CSharp) Метод

GetHashCode() публичный Метод

public GetHashCode ( ) : int
Результат int
        public override int GetHashCode()
        {
            return BitConverter.ToInt32(_bytes, 0)
            ^ BitConverter.ToInt32(_bytes, 4)
            ^ BitConverter.ToInt32(_bytes, 8);
        }