Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
VerifyDecimalSeparator()
static void System.Globalization.NumberFormatInfo.VerifyDecimalSeparator
(
string
decSep
,
string
propertyName
)
inline
static
private
Definition at line
554
of file
NumberFormatInfo.cs
.
555
{
556
if
(decSep ==
null
)
557
{
558
throw
new
ArgumentNullException(propertyName);
559
}
560
if
(decSep.Length == 0)
561
{
562
throw
new
ArgumentException
(SR.Argument_EmptyDecString, propertyName);
563
}
564
}
System.Xml.ExceptionType.ArgumentException
@ ArgumentException
References
System.SR.Argument_EmptyDecString
.
System
Globalization
NumberFormatInfo
Generated by
1.10.0