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

◆ GetUnicodeCategory() [3/3]

static UnicodeCategory System.Globalization.CharUnicodeInfo.GetUnicodeCategory ( string s,
int index )
inlinestatic

Definition at line 3900 of file CharUnicodeInfo.cs.

3901 {
3902 if (s == null)
3903 {
3904 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.s);
3905 }
3906 if ((uint)index >= (uint)s.Length)
3907 {
3908 ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.index);
3909 }
3911 }
static UnicodeCategory GetUnicodeCategoryInternal(string value, int index)

References System.Globalization.CharUnicodeInfo.GetUnicodeCategoryInternal(), System.index, System.s, System.ThrowHelper.ThrowArgumentNullException(), and System.ThrowHelper.ThrowArgumentOutOfRangeException().