System.StreamExtensions.ReadUInt64 C# (CSharp) Метод

ReadUInt64() публичный статический Метод

public static ReadUInt64 ( this stream ) : System.UInt64
stream this
Результат System.UInt64
        public static unsafe UInt64 ReadUInt64(this Stream stream) { UInt64 v; stream.ReadNoAlloc((byte*)&v, 0, sizeof(UInt64)); return v; }
        public static unsafe float ReadFloat(this Stream stream) { float v; stream.ReadNoAlloc((byte*)&v, 0, sizeof(float)); return v; }