Extensions.Append(StringBuilder, StringSegment) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Add the given StringSegment to the StringBuilder.
public:
[System::Runtime::CompilerServices::Extension]
static System::Text::StringBuilder ^ Append(System::Text::StringBuilder ^ builder, Microsoft::Extensions::Primitives::StringSegment segment);
public static System.Text.StringBuilder Append (this System.Text.StringBuilder builder, Microsoft.Extensions.Primitives.StringSegment segment);
static member Append : System.Text.StringBuilder * Microsoft.Extensions.Primitives.StringSegment -> System.Text.StringBuilder
<Extension()>
Public Function Append (builder As StringBuilder, segment As StringSegment) As StringBuilder
Parameters
- builder
- StringBuilder
The StringBuilder to add to.
- segment
- StringSegment
The StringSegment to add.
Returns
The original StringBuilder.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.