我NEAD設置屬性爲對象在C#中的動態,塞汀屬性值
Personi p = new Personi();//this class has a property Datelindja(DateTime)
p.Emri = "Florim";
p.Mbiemri = "Maxhuni";
SetValue(p, "Datelindja", DateTime.Now); //I nead these method. using dynamic keyword
Console.WriteLine(p.Ditelindja);
我如何實現此方法,將設置這些參數值的基礎。
方法簽名
SetValue(dynamic orgObj, string property, dynamic value)
對不起我的英語不好。