/// <summary> /// Writes a float field value, without a tag, to the stream. /// </summary> /// <param name="value">The value to write</param> public void WriteFloat(float value) { var span = new Span <byte>(buffer); WritingPrimitives.WriteFloat(ref span, ref state, value); }
/// <summary> /// Writes a float field value, without a tag. /// </summary> /// <param name="value">The value to write</param> public void WriteFloat(float value) { WritingPrimitives.WriteFloat(ref buffer, ref state, value); }