Possible Duplicate:
How can I read the properties of a C# class dynamically?
I have to get values of class members using strings of their names only. I think I have to use Reflection but I am not realy sure how to. Can you help me?
I have to get values of class members using strings of their names only. I think I have to use Reflection but I am not realy sure how to. Can you help me? |
|||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
If you know type of member you're looking for, you can use If you don't know the type you are working with:
Different member types have different means to getting the value. For a property you would do:
|
|||
|
|
|
|||
|
|