NLite.Data.Guard.NotNull C# (CSharp) Method

NotNull() private method

private NotNull ( object argumentValue, string argumentName ) : void
argumentValue object
argumentName string
return void
        public static void NotNull(object argumentValue,
                                         string argumentName)
        {
            if (argumentValue == null) throw new ArgumentNullException(argumentName);
        }