首頁 > 後端開發 > 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
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板