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

◆ GetDigitValue() [2/2]

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

Definition at line 3757 of file CharUnicodeInfo.cs.

3758 {
3759 if (s == null)
3760 {
3761 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.s);
3762 }
3763 if ((uint)index >= (uint)s.Length)
3764 {
3765 ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.index);
3766 }
3768 }
static int GetCodePointFromString(string s, int index)
static int GetDigitValueInternalNoBoundsCheck(uint codePoint)

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