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

◆ IsLowSurrogate() [2/2]

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

Definition at line 734 of file Char.cs.

735 {
736 if (s == null)
737 {
738 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.s);
739 }
740 if ((uint)index >= (uint)s.Length)
741 {
742 ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.index);
743 }
744 return IsLowSurrogate(s[index]);
745 }
static bool IsLowSurrogate(char c)
Definition Char.cs:729

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