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

◆ GetBidiCategory() [1/2]

static StrongBidiCategory System.Globalization.CharUnicodeInfo.GetBidiCategory ( string s,
int index )
inlinestaticpackage

Definition at line 3690 of file CharUnicodeInfo.cs.

3691 {
3692 if (s == null)
3693 {
3694 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.s);
3695 }
3696 if ((uint)index >= (uint)s.Length)
3697 {
3698 ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.index);
3699 }
3701 }
static int GetCodePointFromString(string s, int index)
static StrongBidiCategory GetBidiCategoryNoBoundsChecks(uint codePoint)

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

Referenced by System.Globalization.IdnMapping.PunycodeDecode(), and System.Globalization.IdnMapping.PunycodeEncode().