gpt4 book ai didi

c# - 反射获取和使用类属性

转载 作者:太空宇宙 更新时间:2023-11-03 23:04:23 24 4
gpt4 key购买 nike

我正在尝试使用反射从 datagridview 更新链接列表,这样我就不必为每个属性编写一行代码。

类(class):

public class clsUnderlying
{
public int UnderlyingID { get; set; }
public string Symbol { get; set; }
public double RiskFreeRate { get; set; }
public double DividendYield { get; set; }
public DateTime? Expiry { get; set; }
}

每个属性一行代码:

UdlyNode.Symbol = (string)GenericTable.Rows[IDX].Cells["Symbol"].Value;
UdlyNode.Expiry = (DateTime)GenericTable.Rows[IDX].Cells["Expiry"].Value;
etc.

但是有很多类和类属性,所以我更愿意使用循环和反射,但我不确定如何,并且我在下面的尝试有错误。

PropertyInfo[] classProps = typeof(GlobalVars.clsUnderlying).GetProperties(); 
foreach (var Prop in classProps)
{
Type T = GetType(Prop); // no overload for method GetType
UdlyNode.Prop.Name = Convert.T(GenericTable.Rows[IDX].Cells[Prop.Name].Value); // error on "Prop.Name" and "T.("
}

感谢您提供任何建议或链接以加深我的理解。

最佳答案

基于反射的循环需要使用不同的语法:

  • 属性类型是 PropertyInfo 的属性,
  • Convert 有一个 ChangeType采用 System.Type
  • 的方法
  • 属性赋值需要调用SetValue

因此,您的循环将如下所示:

foreach (var p in classProps) {
p.SetValue(
UdlyNode
, Convert.ChangeType(
GenericTable.Rows[IDX].Cells[p.Name].Value
, p.PropertyType
)
);
}

关于c# - 反射获取和使用类属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41848754/

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