Example #1
0
        public static Uint64 Decode(IByteReader stream)
        {
            Uint64 decodedUint64 = new Uint64();

            decodedUint64.InnerValue = XdrEncoding.DecodeUInt64(stream);
            return(decodedUint64);
        }