I know I could have an attribute but that\'s more work than I want to go to... and not general enough.
I want to do something like
class Whotsit
{
What you are trying to do is not possible. Using reflection you can:
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?