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