What you are trying to do , afaik, is not possible. Using reflection you can:
- Get a property, field or method's details from it's string name.
- Get a list of all properties, fields or methods for a given type.
Your GetName method, when called, is passed a string. The GetMethod will know about the string but retains no source property meta data.
Out of interest, why are you trying to do this?
