gpt4 book ai didi

c# - 动态获取类中组件中的属性值

转载 作者:太空宇宙 更新时间:2023-11-03 10:21:49 25 4
gpt4 key购买 nike

我有以下类(class)

public class Statement
{
public string Prop1 { get; set; }
public string Prop2 { get; set; }
public string Prop3 { get; set; }
public Narrative Narrative { get; set; }
}

public class Narrative
{
public string Narrative1 { get; set; }
public string Narrative2 { get; set; }
public string Narrative3 { get; set; }
}

我想动态获取 Narrative1 属性。谁能帮助实现这一目标?

我知道如何使用反射获取类中 a 的属性名称的值。这是相同的代码。

public static object ReflectPropertyValue(object source, string property)
{
return source.GetType().GetProperty(property).GetValue(source,null);
}

任何人都可以帮助如何在另一个属性中获取属性的值吗?

谢谢

最佳答案

假设您有一个Statement 对象,您可以在您的方法中使用Narrative 属性作为source。例如:

var statement = new Statement();
// fill properties... change object's state

// get the reference of narrative object
object narrative = ReflectPropertyValue(statement, "Narrative");

// get the value and safe cast it to string
var narrative1Value = ReflectPropertyValue(narrative, "Narrative1") as string;

关于c# - 动态获取类中组件中的属性值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33234336/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com