Example #1
0
        public static Int64 Decode(IByteReader stream)
        {
            Int64 decodedInt64 = new Int64();

            decodedInt64.InnerValue = XdrEncoding.DecodeInt64(stream);
            return(decodedInt64);
        }