C# 클래스 Myre.Extensions.StringBuilderExtensions

A static class containing extension methods for the System.Text.StringBuilder class.
파일 보기 프로젝트 열기: martindevans/Myre

공개 메소드들

메소드 설명
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