Exemple #1
0
        public static Price Decode(IByteReader stream)
        {
            Price decodedPrice = new Price();

            decodedPrice.N = Int32.Decode(stream);
            decodedPrice.D = Int32.Decode(stream);
            return(decodedPrice);
        }
        public static Price Decode(XdrDataInputStream stream)
        {
            Price decodedPrice = new Price();

            decodedPrice.N = Int32.Decode(stream);
            decodedPrice.D = Int32.Decode(stream);
            return(decodedPrice);
        }