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

            decodedUint32.InnerValue = XdrEncoding.DecodeUInt32(stream);
            return(decodedUint32);
        }