C# Class Myre.Extensions.StringBuilderExtensions

A static class containing extension methods for the System.Text.StringBuilder class.
Exibir arquivo Open project: martindevans/Myre

Public Methods

Method 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 method

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.
return void

Append() public static method

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..
return void

Clear() public static method

Clears this instance.
public static Clear ( this sb ) : void
sb this
return void