如何获取引用字段的属性

发布于 2024-08-20 18:11:32 字数 316 浏览 4 评论 0原文

我有一个问题: 是否有一种优雅的方式来获取引用字段的属性。 即:

public class C1: Base
{
    [MyAttribute]
    public string Field1;
}
public class Base
{
    private void Do(ref string field)
    {
          if (field has attributes)
              DoSomething();
    }
} 

如何在 Do() 方法中获取字段的属性?

提前致谢。

I have a question:
Is there an elegant way of getting Attributes on a referenced field.
Ie.:

public class C1: Base
{
    [MyAttribute]
    public string Field1;
}
public class Base
{
    private void Do(ref string field)
    {
          if (field has attributes)
              DoSomething();
    }
} 

How can I get attributes of a field in the method Do()?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

亢潮 2024-08-27 18:11:32

您无法使用 ref string field 签名来做到这一点。属性应用于声明(字段、类、事件等),而不是“实例”。

可以做的是像这样改变您的方法:

private void Do(Type fieldContainingType, string fieldName, ref string field)

然后使用反射来检查fieldContainingType以查看哪些属性应用于名为fieldName的字段>。然而,这种方法极其脆弱并且通常非常糟糕。

There's no way you can do that with ref string field signature. Attributes are applied to declarations (fields, classes, events etc.), not to "instances".

What you can do, is alter your method like this:

private void Do(Type fieldContainingType, string fieldName, ref string field)

and then use reflection to inspect fieldContainingType to see, what attributes are applied to field named fieldName. This approach, however, is extremely fragile and generally very bad.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文