反射可以改變字串輸入的屬性值嗎?
利用 C# 中的反射,您可以存取類別的私有成員,包括其屬性。這使您能夠操作這些屬性的基礎值,儘管它們的存取限制。
範例:反射性地設定屬性值
考慮以下程式碼:
string propertyName = "first_name"; // Assume there's a property named first_name in the class
要使用反射設定此屬性的值,請遵循以下步驟步驟:
使用反射來取得屬性資訊:
Type propertyType = typeof(TargetClass); PropertyInfo propertyInfo = propertyType.GetProperty(propertyName, BindingFlags.NonPublic | BindingFlags.Instance);
利用SetValue方法改變屬性值:
object targetObject = new TargetClass(); propertyInfo.SetValue(targetObject, "New Value", null);
注意:在上面的範例中,TargetClass 表示包含first_name 屬性的類別。若要存取私有或受保護的屬性,請相應調整 GetProperty() 中的 BindingFlags。
以上是C# 反射可以更改字串中的私有屬性值嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!