Method | Description | |
---|---|---|
Append ( |
Append specified FastString to end of current string.
|
|
Append ( char rhs ) : |
Append specified character to end of current string.
|
|
Append ( string rhs ) : |
Append specified string to end of current string.
|
|
Clear ( ) : void |
Clear string data.
|
|
FastString ( ) : System |
Default constructor with empty string data.
|
|
FastString ( string rhs ) : System |
Constructor with specified default string data.
|
|
ToString ( ) : string |
Return final string, no GC allocation.
|
|
Trim ( int amount ) : |
Trim current string with specified amount of characters from end.
|
|
UpdateLength ( ) : void | ||
this ( int idx ) : char |
Get / set character at specified position.
|
public Append ( |
||
rhs | String to append. | |
return |
public Append ( char rhs ) : |
||
rhs | char | Character to append. |
return |
public Append ( string rhs ) : |
||
rhs | string | String to append. |
return |
public FastString ( string rhs ) : System | ||
rhs | string | Init string data. |
return | System |