Something like this:
TextBox tb = new TextBox();
PropertyInfo pi = tb.GetType().GetProperty("Text");
string s = (string)pi.GetValue(tb, null);
Hope that helps.
[quoted text, click to view] "Rain" wrote:
> Hi, i need help please.. any help would be greatly appreciated. I need to
> know how i can get the value of a property throught reflection in C#? please
> please.. thanks in advance...