Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsControl() [2/2]

static bool System.Char.IsControl ( string s,
int index )
inlinestatic

Definition at line 402 of file Char.cs.

403 {
404 if (s == null)
405 {
406 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.s);
407 }
408 if ((uint)index >= (uint)s.Length)
409 {
410 ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.index);
411 }
412 return IsControl(s[index]);
413 }
static bool IsControl(char c)
Definition Char.cs:397

References System.index, System.Char.IsControl(), System.s, System.ThrowHelper.ThrowArgumentNullException(), and System.ThrowHelper.ThrowArgumentOutOfRangeException().