Exemplo n.º 1
0
        public static Uint64 Decode(XdrDataInputStream stream)
        {
            Uint64 decodedUint64 = new Uint64();

            decodedUint64.InnerValue = stream.ReadULong();
            return(decodedUint64);
        }