Method | Description | |
---|---|---|
Append ( String value ) : void |
This will add a
|
|
Append ( String value, int off, int len ) : void |
This will add a
|
|
Append ( char ch ) : void |
This will add a
|
|
Append ( char value, int off, int len ) : void |
This will add a
|
|
Clear ( ) : void |
This will empty the
|
|
OutputBuffer ( ) : System.Text |
Constructor for
|
|
Write ( |
This method is used to write the contents of the buffer to the specified
|
public Append ( String value ) : void | ||
value | String | /// the string to be appended to this output buffer /// |
return | void |
public Append ( String value, int off, int len ) : void | ||
value | String | /// the string to be appended to the output buffer /// |
off | int | /// the offset to begin reading from the string /// |
len | int | /// the number of characters to append to this /// |
return | void |
public Append ( char ch ) : void | ||
ch | char | /// the character to be appended to the buffer /// |
return | void |
public Append ( char value, int off, int len ) : void | ||
value | char | /// the character array to be appended to this /// |
off | int | /// the read offset for the array to begin reading /// |
len | int | /// the number of characters to append to this /// |
return | void |
public Write ( |
||
writer | ||
return | void |