ValueStringBuilder
Search Results for

    Show / Hide Table of Contents

    Class ValueStringBuilderExtensions

    Extension methods for the ValueStringBuilder.

    Inheritance
    System.Object
    ValueStringBuilderExtensions
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: LinkDotNet.StringBuilder
    Assembly: LinkDotNet.StringBuilder.dll
    Syntax
    public static class ValueStringBuilderExtensions

    Methods

    | Improve this Doc View Source

    ToStringBuilder(ValueStringBuilder)

    Creates a new System.Text.StringBuilder from this ValueStringBuilder.

    Declaration
    public static StringBuilder ToStringBuilder(this ValueStringBuilder builder)
    Parameters
    Type Name Description
    ValueStringBuilder builder

    The builder from which the new instance is derived.

    Returns
    Type Description
    System.Text.StringBuilder

    A new System.Text.StringBuilder instance with the string represented by this builder.

    | Improve this Doc View Source

    ToValueStringBuilder(StringBuilder)

    Creates a new ValueStringBuilder from the given builder.

    Declaration
    public static ValueStringBuilder ToValueStringBuilder(this StringBuilder builder)
    Parameters
    Type Name Description
    System.Text.StringBuilder builder

    The builder from which the new instance is derived.

    Returns
    Type Description
    ValueStringBuilder

    A new ValueStringBuilder instance with the string represented by this builder.

    • Improve this Doc
    • View Source
    In This Article