Dev2.VerifyArgument.IsNotNull C# (CSharp) 메소드

IsNotNull() 개인적인 메소드

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