1

我不确定为什么下面的方法总是返回 false

        // method to check for presence of TestCaseAttribute
    private static bool hasTestCaseAttribute(MemberInfo m)
    {
        foreach (object att in m.GetCustomAttributes(true))
        {
            Console.WriteLine(att.ToString());
            if (att is TestCase.TestCaseAttribute) // also tried if (att is TestCaseAttribute)
            {
                return true;
            }
        }
        return false;

    }

即使控制台输出如下所示:

TestCase.DateAttribute
TestCase.AuthorAttribute
TestCase.TestCaseAttribute

我在这里想念什么?

编辑; 这种方法似乎有效......

  private static bool hasTestCaseAttribute(MemberInfo m)
    {
        if (m.GetCustomAttributes(typeof(TestCaseAttribute), true).Any())
        {
            return true;
        }
        else
        {
            return false;
        }
    }
4

3 回答 3

4

这应该可以解决问题。

    private static bool hasTestCaseAttribute(MemberInfo m)
    {
        return m.GetCustomAttributes(typeof(TestCaseAttribute), true).Any();
    }
于 2013-01-28T02:13:10.043 回答
2
public static bool HasCustomAttribute(MethodInfo methodInfo, bool inherit = false)
{
    return methodInfo.GetCustomAttribute<CustomAttribute>(inherit) != null;
}

您可以使用上面的函数,它比您当前的方法更简洁。sa_ddam 的片段也可以。

于 2013-01-28T02:29:08.610 回答
0

你可以试试这个:

private static bool hasTestCaseAttribute(MethodInfo method)
{    
    object[] customAttributes = Attribute.GetCustomAttribute(method, 
                                    typeof(TestCase), true) as TestCase;
    if(customAttributes.Length>0 && customAttributes[0]!=null)
    {
        return true;
    }
    else
    {
        return false;
    }
  }
于 2013-01-28T02:10:55.873 回答