检查自定义属性的方法
本文关键字:方法 自定义属性 检查 | 更新日期: 2023-09-27 17:56:11
我不确定为什么下面的方法总是返回 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;
}
}
这应该可以解决问题。
private static bool hasTestCaseAttribute(MemberInfo m)
{
return m.GetCustomAttributes(typeof(TestCaseAttribute), true).Any();
}
public static bool HasCustomAttribute(MethodInfo methodInfo, bool inherit = false)
{
return methodInfo.GetCustomAttribute<CustomAttribute>(inherit) != null;
}
您可以使用上面的函数,它比您当前的方法更简洁。 sa_ddam的片段也有效。
你可以试试这个:
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;
}
}