Append
Appends the string representation of the specified value to this instance.
Public Function Append(
ByRef Value As Variant,
Optional ByRef StartIndex As Variant,
Optional ByRef Count As Variant ) As StringBuilder
Parameters
- Value
-
[ByRef]
Variant.
The value to be appended.
- StartIndex
-
[ByRef]
Optional.
Variant.
A zero-based index of the first character in the string representation to begin appending from.
- Count
-
[ByRef]
Optional.
Variant.
The number of characters from the string representation to append.
Return Values
StringBuilder - A refernece to this instance after the append operation has completed.
Remarks
This version of Append(Value) attempts to convert to the value using Object.ToString(Value).
This will allow for objects that implement IObject or IFormattable to be converted to a string value using additional information.
See Also
Project CorLib Overview
Class StringBuilder Overview