C# 클래스 Evbpc.Framework.Utilities.ExtendedStringBuilder

This wraps the .NET StringBuilder in a slightly more easy-to-use format.
파일 보기 프로젝트 열기: EBrown8534/Framework 1 사용 예제들

공개 메소드들

메소드 설명
Append ( ExtendedStringBuilder e ) : ExtendedStringBuilder

Appends an ExtendedStringBuilder to the current ExtendedStringBuilder.

Append ( StringBuilder s ) : ExtendedStringBuilder

Appends a StringBuilder to the current ExtendedStringBuilder.

Append ( char c ) : ExtendedStringBuilder

Appends a char to the current ExtendedStringBuilder.

Append ( object o ) : ExtendedStringBuilder

Appends an object to the current ExtendedStringBuilder.

Append ( string s ) : ExtendedStringBuilder

Appends a string to the current ExtendedStringBuilder.

ExtendedStringBuilder ( ) : System

Creates a new, empty instance of the ExtendedStringBuilder.

ExtendedStringBuilder ( ExtendedStringBuilder baseBuilder ) : System

Creates a new instance of the ExtendedStringBuilder with the provided ExtendedStringBuilder as a base.

ExtendedStringBuilder ( StringBuilder baseBuilder ) : System

Creates a new instance of the ExtendedStringBuilder with the provided StringBuilder as a base.

ExtendedStringBuilder ( int capacity ) : System

Creates a new instance of the ExtendedStringBuilder with the provided capacity.

ExtendedStringBuilder ( string baseString ) : System

Creates a new instance of the ExtendedStringBuilder with the provided string as a base.

ToString ( ) : string

Returns the current ExtendedStringBuilder as a string.

ToString ( int startIndex, int length ) : string

Returns a substring of the current ExtendedStringBuilder.

operator ( ) : ExtendedStringBuilder

Appends a string to the current ExtendedStringBuilder.

메소드 상세

Append() 공개 메소드

Appends an ExtendedStringBuilder to the current ExtendedStringBuilder.
public Append ( ExtendedStringBuilder e ) : ExtendedStringBuilder
e ExtendedStringBuilder The to append.
리턴 ExtendedStringBuilder

Append() 공개 메소드

Appends a StringBuilder to the current ExtendedStringBuilder.
public Append ( StringBuilder s ) : ExtendedStringBuilder
s StringBuilder The StringBuilder to append.
리턴 ExtendedStringBuilder

Append() 공개 메소드

Appends a char to the current ExtendedStringBuilder.
public Append ( char c ) : ExtendedStringBuilder
c char The char to append.
리턴 ExtendedStringBuilder

Append() 공개 메소드

Appends an object to the current ExtendedStringBuilder.
public Append ( object o ) : ExtendedStringBuilder
o object The object to append.
리턴 ExtendedStringBuilder

Append() 공개 메소드

Appends a string to the current ExtendedStringBuilder.
public Append ( string s ) : ExtendedStringBuilder
s string The string to append.
리턴 ExtendedStringBuilder

ExtendedStringBuilder() 공개 메소드

Creates a new, empty instance of the ExtendedStringBuilder.
public ExtendedStringBuilder ( ) : System
리턴 System

ExtendedStringBuilder() 공개 메소드

Creates a new instance of the ExtendedStringBuilder with the provided ExtendedStringBuilder as a base.
public ExtendedStringBuilder ( ExtendedStringBuilder baseBuilder ) : System
baseBuilder ExtendedStringBuilder The containing the base string to intialize to.
리턴 System

ExtendedStringBuilder() 공개 메소드

Creates a new instance of the ExtendedStringBuilder with the provided StringBuilder as a base.
public ExtendedStringBuilder ( StringBuilder baseBuilder ) : System
baseBuilder StringBuilder The StringBuilder containing the base string to intialize to.
리턴 System

ExtendedStringBuilder() 공개 메소드

Creates a new instance of the ExtendedStringBuilder with the provided capacity.
public ExtendedStringBuilder ( int capacity ) : System
capacity int The initial buffer size.
리턴 System

ExtendedStringBuilder() 공개 메소드

Creates a new instance of the ExtendedStringBuilder with the provided string as a base.
public ExtendedStringBuilder ( string baseString ) : System
baseString string The initial string in the buffer.
리턴 System

ToString() 공개 메소드

Returns the current ExtendedStringBuilder as a string.
public ToString ( ) : string
리턴 string

ToString() 공개 메소드

Returns a substring of the current ExtendedStringBuilder.
public ToString ( int startIndex, int length ) : string
startIndex int The starting position of the substring.
length int The length of the substring.
리턴 string

operator() 공개 정적인 메소드

Appends a string to the current ExtendedStringBuilder.
public static operator ( ) : ExtendedStringBuilder
리턴 ExtendedStringBuilder