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 b22494c commit f31c2c7Copy full SHA for f31c2c7
Microsoft.Toolkit.HighPerformance/Buffers/MemoryBufferWriter{T}.cs
@@ -106,15 +106,15 @@ public void Advance(int count)
106
/// <inheritdoc/>
107
public Memory<T> GetMemory(int sizeHint = 0)
108
{
109
- this.ValidateSizeHint(sizeHint);
+ ValidateSizeHint(sizeHint);
110
111
return this.memory.Slice(this.index);
112
}
113
114
115
public Span<T> GetSpan(int sizeHint = 0)
116
117
118
119
return this.memory.Slice(this.index).Span;
120
0 commit comments