public static StringBuilder Append(
this StringBuilder builder,
StringBuilder? value,
int startIndex,
int count
)<ExtensionAttribute>
Public Shared Function Append (
builder As StringBuilder,
value As StringBuilder,
startIndex As Integer,
count As Integer
) As StringBuilderpublic:
[ExtensionAttribute]
static StringBuilder^ Append(
StringBuilder^ builder,
StringBuilder^ value,
int startIndex,
int count
)[<ExtensionAttribute>]
static member Append :
builder : StringBuilder *
value : StringBuilder *
startIndex : int *
count : int -> StringBuilder | NullReferenceException | builder is null. |
| ArgumentOutOfRangeException | startIndex or count are smaller than zero - or - startIndex + count is larger than the number of characters in value. |
| ArgumentNullException | value is null and the values of startIndex or count are greater than zero. |