private BigInteger?ReadInternal(DataInput input)
        {
            bool isNull = input.ReadBoolean();

            if (isNull)
            {
                return(null);
            }

            return(DIOBigIntegerUtil.ReadBigInt(input));
        }
示例#2
0
 private BigInteger ReadInternal(DataInput input)
 {
     return(DIOBigIntegerUtil.ReadBigInt(input));
 }