System.Xml.UniqueId.UnsafeGetInt64 C# (CSharp) Méthode

UnsafeGetInt64() private méthode

private UnsafeGetInt64 ( byte pb ) : System.Int64
pb byte
Résultat System.Int64
        private unsafe Int64 UnsafeGetInt64(byte* pb)
        {
            Int32 idLow = UnsafeGetInt32(pb);
            Int32 idHigh = UnsafeGetInt32(&pb[4]);
            return (((Int64)idHigh) << 32) | ((UInt32)idLow);
        }