public void FastStringBuilder_ShouldParseDouble() { var builder = new FastStringBuilder(); builder.Append("1.2e-17"); Assert.AreEqual(1.2e-17, builder.ParseDouble()); }
public unsafe float ToReal() { return((float)StringBuilder.ParseDouble()); }