通过传递名称获取和设置字段值

发布于 2024-10-21 01:26:25 字数 343 浏览 2 评论 0原文

我在类中有一个具有随机名称的字段,例如:

class Foo {
    public string a2de = "e2"
}

我在另一个变量中有该字段的名称,例如:

string vari = "a2de"

我可以使用 的值获取或设置字段 a2de 的值吗?变量?

喜欢:

getvar(vari)

setvar(vari) = "e3"

I have a field in a class with a random name like:

class Foo {
    public string a2de = "e2"
}

I have the name of this field in another variable like:

string vari = "a2de"

Can I get or set the value of field a2de by using the value of vari?

like:

getvar(vari)

or

setvar(vari) = "e3"

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

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

发布评论

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

评论(3

纸短情长 2024-10-28 01:26:25

你必须使用反射。

要获取 targetObject 上的属性值:

var value = targetObject.GetType().GetProperty(vari).GetValue(targetObject, null);

要获取字段的值,其类似:

var value = targetObject.GetType().GetField(vari).GetValue(targetObject, null);

如果属性/字段不是公共的或者是从基类继承的,则需要提供显式 BindingFlagsGetPropertyGetField

You have to use reflection.

To get the value of a property on targetObject:

var value = targetObject.GetType().GetProperty(vari).GetValue(targetObject, null);

To get the value of a field it's similar:

var value = targetObject.GetType().GetField(vari).GetValue(targetObject, null);

If the property/field is not public or it has been inherited from a base class, you will need to provide explicit BindingFlags to GetProperty or GetField.

尛丟丟 2024-10-28 01:26:25

可以使用反射(例如Type.GetField等)来实现这一点 - 但这通常应该是最后的手段。

您是否考虑过使用 Dictionary 并使用“变量名称”作为键?

You can potentially do it with reflection (e.g. Type.GetField etc) - but that should generally be a last resort.

Have you considered using a Dictionary<string, string> and using the "variable name" as the key instead?

夜无邪 2024-10-28 01:26:25

您必须使用反射来按名称访问变量。像这样:

class Foo
{
    int namedField = 1;
    string vari = "namedField"

    void AccessField()
    {
        int val = (int) GetType().InvokeMember(vari,
        BindingFlags.Instance | BindingFlags.NonPublic |
        BindingFlags.GetField, null, this, null);
        // now you should have 1 in val.
    }
}

You'd have to use Reflection to access the variable by name. Like this:

class Foo
{
    int namedField = 1;
    string vari = "namedField"

    void AccessField()
    {
        int val = (int) GetType().InvokeMember(vari,
        BindingFlags.Instance | BindingFlags.NonPublic |
        BindingFlags.GetField, null, this, null);
        // now you should have 1 in val.
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文