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