write_big_integer() public méthode

public write_big_integer ( Erlang.NET.BigInteger v ) : void
v Erlang.NET.BigInteger
Résultat void
Exemple #1
0
 /**
  * Convert this number to the equivalent Erlang external representation.
  *
  * @param buf
  *                an output stream to which the encoded number should be
  *                written.
  */
 public override void encode(OtpOutputStream buf)
 {
     if (!BigIntegerIsNull(bigVal))
     {
         buf.write_big_integer(bigVal);
     }
     else
     {
         buf.write_long(val);
     }
 }
 /**
  * Convert this number to the equivalent Erlang external representation.
  *
  * @param buf
  *                an output stream to which the encoded number should be
  *                written.
  */
 public override void encode(OtpOutputStream buf)
 {
     if (!BigIntegerIsNull(bigVal))
     {
         buf.write_big_integer(bigVal);
     }
     else
     {
         buf.write_long(val);
     }
 }