public void Write( BigInteger?bigInteger, DataOutput stream) { bool isNull = bigInteger == null; stream.WriteBoolean(isNull); if (!isNull) { DIOBigIntegerUtil.WriteBigInt(bigInteger.Value, stream); } }
public void Write( BigInteger bigInteger, DataOutput stream) { DIOBigIntegerUtil.WriteBigInt(bigInteger, stream); }