public static bool Contains(
this StringBuilder builder,
char value,
int startIndex,
int count
)<ExtensionAttribute>
Public Shared Function Contains (
builder As StringBuilder,
value As Char,
startIndex As Integer,
count As Integer
) As Booleanpublic:
[ExtensionAttribute]
static bool Contains(
StringBuilder^ builder,
wchar_t value,
int startIndex,
int count
)[<ExtensionAttribute>]
static member Contains :
builder : StringBuilder *
value : char *
startIndex : int *
count : int -> bool | ArgumentNullException | builder is null. |
| ArgumentOutOfRangeException | startIndex or count are smaller than zero or larger than the number of characters in builder - or - startIndex + count is larger than the number of characters in builder. |