We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 074792e commit f5ac6a8Copy full SHA for f5ac6a8
src/LinkDotNet.StringBuilder/ValueStringBuilder.cs
@@ -101,9 +101,11 @@ public void AppendLine(ReadOnlySpan<char> str)
101
/// <returns>True, if the copy was successful, otherwise false.</returns>
102
public bool TryCopyTo(Span<char> destination) => buffer[..bufferPosition].TryCopyTo(destination);
103
104
+ /// <summary>
105
+ /// Clears the st
106
+ /// </summary>
107
public void Clear()
108
{
- buffer.Clear();
109
bufferPosition = 0;
110
}
111
0 commit comments