示例#1
0
 /*
  * Convert this double to the equivalent Erlang external representation.
  *
  * @param buf an output stream to which the encoded value should be
  * written.
  **/
 public override void  encode(OtpOutputStream buf)
 {
     buf.write_double(this.d);
 }
示例#2
0
文件: Double.cs 项目: saleyn/otp.net
		/*
		* Convert this double to the equivalent Erlang external representation.
		*
		* @param buf an output stream to which the encoded value should be
		* written.
		**/
		public override void  encode(OtpOutputStream buf)
		{
			buf.write_double(this.d);
		}