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

◆ GetNumericValue() [2/2]

static double System.Char.GetNumericValue ( string s,
int index )
inlinestatic

Definition at line 698 of file Char.cs.

699 {
700 if (s == null)
701 {
702 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.s);
703 }
704 if ((uint)index >= (uint)s.Length)
705 {
706 ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.index);
707 }
709 }
static double GetNumericValueInternal(string s, int index)

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