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);
             }
         }