Méthode | Description | |
---|---|---|
Append ( |
Appends the given string to the end of this object.
|
|
Append ( object obj ) : void |
Appends the given object (converted to a string) to the end of this object.
|
|
Append ( string str ) : void |
Appends the given string to the end of this object.
|
|
Concatenate ( |
Returns a new ConcatenatedString instance containing the concatenation of this ConcatenatedString and the given string.
|
|
Concatenate ( object obj ) : |
Returns a new ConcatenatedString instance containing the concatenation of this ConcatenatedString and the given object (converted to a string).
|
|
Concatenate ( string str ) : |
Returns a new ConcatenatedString instance containing the concatenation of this ConcatenatedString and the given string.
|
|
ConcatenatedString ( string initialValue ) : System |
Creates a new ConcatenatedString instance from the given string.
|
|
ConcatenatedString ( string left, string right ) : System |
Creates a new ConcatenatedString instance by concatenating the given strings.
|
|
ToString ( ) : string |
Returns a string representing the current object.
|
Méthode | Description | |
---|---|---|
ConcatenatedString ( StringBuilder builder ) : System |
public Append ( |
||
str | The string to append. | |
Résultat | void |
public Append ( object obj ) : void | ||
obj | object | The object to append. |
Résultat | void |
public Append ( string str ) : void | ||
str | string | The string to append. |
Résultat | void |
public Concatenate ( |
||
str | The string to append. | |
Résultat |
public Concatenate ( object obj ) : |
||
obj | object | The object to append to this string. |
Résultat |
public Concatenate ( string str ) : |
||
str | string | The string to append. |
Résultat |
public ConcatenatedString ( string initialValue ) : System | ||
initialValue | string | The initial contents of the concatenated string. |
Résultat | System |
public ConcatenatedString ( string left, string right ) : System | ||
left | string | The left-most string to concatenate. |
right | string | The right-most string to concatenate. |
Résultat | System |