I nead to set a property for an object
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);
How do i implement this method that will set the value base on these parameters.
method signature
SetValue(dynamic orgObj, string property, dynamic value)
Sorry for my bad english.