您如何反映应用于返回值的属性?

发布于 2024-08-28 16:33:15 字数 410 浏览 5 评论 0原文

请考虑以下问题:

[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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱花细雨 2024-09-04 16:33:16

MethodInfo 有一个 ReturnTypeCustomAttributes 属性,如果您对此调用 GetCustomAttributes(),您将获得返回值属性。

MethodInfo mi = typeof(Class1).GetMethod("TestMethod");
object[] attrs = mi.ReturnTypeCustomAttributes.GetCustomAttributes(true);

MethodInfo has a ReturnTypeCustomAttributes property, if you call GetCustomAttributes() on this you get the return value atrtibutes.

MethodInfo mi = typeof(Class1).GetMethod("TestMethod");
object[] attrs = mi.ReturnTypeCustomAttributes.GetCustomAttributes(true);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文