首页 > 后端开发 > C++ > 如何在 C# 中按名称动态检索属性值?

如何在 C# 中按名称动态检索属性值?

Susan Sarandon
发布: 2025-01-06 16:54:40
原创
309 人浏览过

How to Dynamically Retrieve Property Values by Name in C#?

在 C 中按名称检索属性值

在 C# 中,会出现一种常见情况,需要根据对象的名称动态访问对象的属性值。这对于通用编程或基于反射的场景非常有用。

要实现此目的,您可以利用 .NET 的反射功能。方法如下:

public string GetPropertyValue(string propertyName)
{
    // Retrieve the type of the object
    Type type = car.GetType();

    // Obtain the property information based on its name
    PropertyInfo property = type.GetProperty(propertyName);

    // Invoke the `GetValue` method to retrieve the property value
    object value = property.GetValue(car, null);

    // Return the property value as a string
    return value.ToString();
}
登录后复制

在此方法中:

  • car.GetType() 获取汽车对象的类型。
  • type.GetProperty(propertyName)检索指定属性名称的 PropertyInfo。
  • property.GetValue(car, null) 调用 GetValue 方法来检索属性值,传递汽车对象和 null 作为可选参数。
  • 属性值以字符串形式返回。

使用此方法对于属性名称为“Make”的汽车对象,它将返回值“Ford”。这种方法允许在 C# 中进行灵活且动态的属性值检索。

以上是如何在 C# 中按名称动态检索属性值?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板