C# Класс Myre.Extensions.StringBuilderExtensions

A static class containing extension methods for the System.Text.StringBuilder class.
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

Append() публичный статический Метод

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.
Результат void

Append() публичный статический Метод

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..
Результат void

Clear() публичный статический Метод

Clears this instance.
public static Clear ( this sb ) : void
sb this
Результат void