Dev2.VerifyArgument.IsNotNull C# (CSharp) Method

IsNotNull() private method

private IsNotNull ( [ name, [ argument ) : void
name [
argument [
return void
         public static void IsNotNull([NotNull]string name, [AssertionCondition(AssertionConditionType.IS_NOT_NULL)]object argument) {
             if(argument == null) {
                 throw new ArgumentNullException(name);
             }
         }