Catel.ReSharper.Arguments.ArgumentCheckStatementDetectionHelper.IsMatchInvoked C# (CSharp) Метод

IsMatchInvoked() публичный статический Метод

public static IsMatchInvoked ( string methodBody, string argumentName ) : bool
methodBody string
argumentName string
Результат 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);
        }