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

◆ GetNumericValue() [3/3]

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

Definition at line 3803 of file CharUnicodeInfo.cs.

3804 {
3805 if (s == null)
3806 {
3807 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.s);
3808 }
3809 if ((uint)index >= (uint)s.Length)
3810 {
3811 ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.index);
3812 }
3814 }
static double GetNumericValueInternal(string s, int index)

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