使用反射設定屬性值
在 C# 中可以使用反射動態設定屬性值。這允許您在運行時修改物件的屬性,無論其可訪問性或可見性如何。
要使用反射設定屬性值,請依照下列步驟操作:
以下範例示範如何使用反射來設定 Person 類別的 firstName 屬性:
using System; using System.Reflection; class Person { public string FirstName { get; set; } } class Test { static void Main(string[] args) { // Create an instance of the Person class Person p = new Person(); // Get the PropertyInfo object for the FirstName property var property = typeof(Person).GetProperty("FirstName"); // Set the value of the FirstName property using reflection property.SetValue(p, "John", null); // Print the value of the FirstName property Console.WriteLine(p.FirstName); // John } }
在此範例中,屬性變數會儲存對 Person 類別的 FirstName 屬性的參考。使用 p 實例和字串值「John」呼叫 SetValue 方法來動態設定屬性的值。
以上是如何在 C# 中使用反射動態設定屬性值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!