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

◆ IfNullAndNullsAreIllegalThenThrow< T >()

static void System.ThrowHelper.IfNullAndNullsAreIllegalThenThrow< T > ( object value,
ExceptionArgument argName )
inlinestaticpackage

Definition at line 488 of file ThrowHelper.cs.

489 {
490 if (default(T) != null && value == null)
491 {
493 }
494 }
static void ThrowArgumentNullException(string name)

References System.ThrowHelper.ThrowArgumentNullException(), and System.value.