Binboo.Core.Commands.Arguments.ParamValidator.Custom C# (CSharp) Method

Custom() public static method

public static Custom ( string regex, bool optional ) : ParamValidator
regex string
optional bool
return ParamValidator
        public static ParamValidator Custom(string regex, bool optional)
        {
            return new ParamValidator(regex, optional);
        }