Exemple #1
0
        public static Uint32 Decode(XdrDataInputStream stream)
        {
            Uint32 decodedUint32 = new Uint32();

            decodedUint32.InnerValue = stream.ReadUInt();
            return(decodedUint32);
        }