Method |
Description |
|
Append ( string str ) : StringBuffer |
Append string to string buffer. (Create new instance if self is Empty, otherwise, modify self). |
|
Clone ( ) : StringBuffer |
|
|
Concat ( StringBuffer another ) : StringBuffer |
Concat another string buffer. (Create new instance if self is Empty, otherwise, modify self). |
|
EndsWith ( char character ) : bool |
|
|
EndsWith ( string text ) : bool |
|
|
GetLength ( ) : int |
|
|
StartsWith ( char character ) : bool |
|
|
StartsWith ( string text ) : bool |
|
|
Substring ( int startIndex, int maxCount ) : StringBuffer |
|
|
ToString ( ) : string |
|
|
operator ( ) : StringBuffer |
|
|