您如何反映应用于返回值的属性?
请考虑以下问题:
[AttributeUsage(AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
public class NotNullAttribute : Attribute
{
}
public class Class1
{
[return: NotNull]
public static string TestMethod([NotNull] string arg)
{
return arg + " + " + arg;
}
}
使用 System.Reflection,您将如何看到 NotNullAttribute 属性已应用于该方法的返回值?如果不能, [return: ] 语法背后的目的是什么?
Consider the following:
[AttributeUsage(AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
public class NotNullAttribute : Attribute
{
}
public class Class1
{
[return: NotNull]
public static string TestMethod([NotNull] string arg)
{
return arg + " + " + arg;
}
}
How, using System.Reflection, would you see that the NotNullAttribute attribute had been applied to the return value of the method? If you can't, what is the purpose behind the [return: ] syntax?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MethodInfo 有一个 ReturnTypeCustomAttributes 属性,如果您对此调用 GetCustomAttributes(),您将获得返回值属性。
MethodInfo has a ReturnTypeCustomAttributes property, if you call GetCustomAttributes() on this you get the return value atrtibutes.