RegexParser.RegexOptionsEx.RegexOptionsEx C# (CSharp) Méthode

RegexOptionsEx() public méthode

public RegexOptionsEx ( RegexOptions options ) : System
options RegexOptions
Résultat System
        public RegexOptionsEx(RegexOptions options)
            : this((options & RegexOptions.IgnoreCase) == RegexOptions.IgnoreCase,
                   (options & RegexOptions.Multiline) == RegexOptions.Multiline,
                   (options & RegexOptions.ExplicitCapture) == RegexOptions.ExplicitCapture,
                   (options & RegexOptions.Singleline) == RegexOptions.Singleline,
                   (options & RegexOptions.IgnorePatternWhitespace) == RegexOptions.IgnorePatternWhitespace,
                   (options & RegexOptions.RightToLeft) == RegexOptions.RightToLeft)
        {
        }

Same methods

RegexOptionsEx::RegexOptionsEx ( bool ignoreCase, bool multiline, bool explicitCapture, bool singleline, bool ignorePatternWhitespace, bool rightToLeft ) : System
RegexOptionsEx