Catel.ReSharper.Arguments.ArgumentCheckStatementDetectionHelper.IsMatchInvoked C# (CSharp) Méthode

IsMatchInvoked() public static méthode

public static IsMatchInvoked ( string methodBody, string argumentName ) : bool
methodBody string
argumentName string
Résultat bool
        public static bool IsMatchInvoked(string methodBody, string argumentName)
        {
            Argument.IsNotNullOrWhitespace(() => argumentName);

            return Regex.IsMatch(methodBody, string.Format(ArgumentCheckStatementDetectionPatterns.IsMatch, argumentName), RegexOptions.IgnorePatternWhitespace) || Regex.IsMatch(methodBody, string.Format(ArgumentCheckStatementDetectionPatterns.IsMatch2, argumentName), RegexOptions.IgnorePatternWhitespace);
        }