Skip to content

Commit 5a826fb

Browse files
authored
Add inline hint for ctor
1 parent ebc9c5a commit 5a826fb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/LinkDotNet.StringBuilder/ValueStringBuilder.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ public ValueStringBuilder(Span<char> initialBuffer)
4747
/// <param name="initialText">The initial text used to initialize this instance. If <paramref name="initialText"/> is <c>null</c>
4848
/// the <see cref="ValueStringBuilder"/> will return an empty string (<see cref="string.Empty"/>).
4949
/// </param>
50+
[MethodImpl(MethodImplOptions.AggressiveInlining)]
5051
public ValueStringBuilder(ReadOnlySpan<char> initialText)
5152
{
5253
Append(initialText);

0 commit comments

Comments
 (0)