Class ValueStringBuilderExtensions
- Namespace
- LinkDotNet.StringBuilder
- Assembly
- LinkDotNet.StringBuilder.dll
Extension methods for the ValueStringBuilder.
public static class ValueStringBuilderExtensions
- Inheritance
-
ValueStringBuilderExtensions
- Inherited Members
Methods
ToStringBuilder(ValueStringBuilder)
Creates a new StringBuilder from this ValueStringBuilder.
public static StringBuilder ToStringBuilder(this ValueStringBuilder builder)
Parameters
builderValueStringBuilderThe builder from which the new instance is derived.
Returns
- StringBuilder
A new StringBuilder instance with the string represented by this
builder.
ToValueStringBuilder(StringBuilder)
Creates a new ValueStringBuilder from the given builder.
public static ValueStringBuilder ToValueStringBuilder(this StringBuilder builder)
Parameters
builderStringBuilderThe builder from which the new instance is derived.
Returns
- ValueStringBuilder
A new ValueStringBuilder instance with the string represented by this builder.
Exceptions
- ArgumentNullException
Throws if
builderis null.