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

◆ CheckArgumentNull< T >()

static void DataSetUtil.CheckArgumentNull< T > ( T argumentValue,
string argumentName )
inlinestaticpackage
Type Constraints
T :class 

Definition at line 21 of file DataSetUtil.cs.

21 : class
22 {
23 if (argumentValue == null)
24 {
25 throw ArgumentNull(argumentName);
26 }
27 }

References System.ArgumentNull.