ReadDouble() public method

Read an Erlang float from the stream.
public ReadDouble ( ) : double
return double
 public void Read_FloatAsDouble(byte[] buf, double want)
 {
     using (var s = new OtpInputStream(buf))
     {
         double got = s.ReadDouble();
         Assert.AreEqual(want, got);
     }
 }