Skip to content

Commit 2db8edf

Browse files
bCambalinkdotnet
authored andcommitted
docs: Added xmldoc for AppendSpan
1 parent e282d81 commit 2db8edf

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/LinkDotNet.StringBuilder/ValueStringBuilder.Append.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,11 @@ public void AppendLine(scoped ReadOnlySpan<char> str)
136136
Append(string.Concat(str, Environment.NewLine));
137137
}
138138

139+
/// <summary>
140+
/// Increases the size of the string builder returning a span of the length appended.
141+
/// </summary>
142+
/// <param name="length">Integer representing the length to be appended.</param>
143+
/// <returns>A span with the characters appended.</returns>
139144
[MethodImpl(MethodImplOptions.AggressiveInlining)]
140145
public Span<char> AppendSpan(int length)
141146
{

0 commit comments

Comments
 (0)