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

◆ IsWhiteSpace() [2/2]

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

Definition at line 654 of file Char.cs.

655 {
656 if (s == null)
657 {
658 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.s);
659 }
660 if ((uint)index >= (uint)s.Length)
661 {
662 ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.index);
663 }
664 return IsWhiteSpace(s[index]);
665 }
static bool IsWhiteSpace(char c)
Definition Char.cs:220

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