コード例 #1
0
ファイル: Int64.cs プロジェクト: theword3/dotnet-stellar-sdk
        public static Int64 Decode(XdrDataInputStream stream)
        {
            Int64 decodedInt64 = new Int64();

            decodedInt64.InnerValue = stream.ReadLong();
            return(decodedInt64);
        }