C# Class Myre.Extensions.StringBuilderExtensions

A static class containing extension methods for the System.Text.StringBuilder class.
Afficher le fichier Open project: martindevans/Myre

Méthodes publiques

Méthode Description
Append ( this sb, StringBuilder stringBuilder ) : void

Appends the specified stringbuilder onto this instance.

Append ( this sb, StringBuilder stringBuilder, int start, int length ) : void

Appends the specified stringbuilder onto this instance.

Clear ( this sb ) : void

Clears this instance.

Method Details

Append() public static méthode

Appends the specified stringbuilder onto this instance.
public static Append ( this sb, StringBuilder stringBuilder ) : void
sb this The sb.
stringBuilder System.Text.StringBuilder The string builder.
Résultat void

Append() public static méthode

Appends the specified stringbuilder onto this instance.
public static Append ( this sb, StringBuilder stringBuilder, int start, int length ) : void
sb this The sb.
stringBuilder System.Text.StringBuilder The string builder.
start int The start index at which to copying.
length int The number of characters to append..
Résultat void

Clear() public static méthode

Clears this instance.
public static Clear ( this sb ) : void
sb this
Résultat void