首頁 >後端開發 >C++ >C# 反射可以更改字串中的私有屬性值嗎?

C# 反射可以更改字串中的私有屬性值嗎?

Mary-Kate Olsen
Mary-Kate Olsen原創
2025-01-05 03:25:39588瀏覽

Can C# Reflection Change Private Property Values from a String?

反射可以改變字串輸入的屬性值嗎?

利用 C# 中的反射,您可以存取類別的私有成員,包括其屬性。這使您能夠操作這些屬性的基礎值,儘管它們的存取限制。

範例:反射性地設定屬性值

考慮以下程式碼:

string propertyName = "first_name";
// Assume there's a property named first_name in the class

要使用反射設定此屬性的值,請遵循以下步驟步驟:

  1. 使用反射來取得屬性資訊:

    Type propertyType = typeof(TargetClass);
    PropertyInfo propertyInfo = propertyType.GetProperty(propertyName, BindingFlags.NonPublic | BindingFlags.Instance);
  2. 利用SetValue方法改變屬性值:

    object targetObject = new TargetClass();
    propertyInfo.SetValue(targetObject, "New Value", null);

注意:在上面的範例中,TargetClass 表示包含first_name 屬性的類別。若要存取私有或受保護的屬性,請相應調整 GetProperty() 中的 BindingFlags。

以上是C# 反射可以更改字串中的私有屬性值嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn