This question already has an answer here:
For example,
static void Main()
{
var someVar = 3;
Console.Write(GetVariableName(someVar));
}
The output of this program should be:
someVar
How can I achieve that using reflection?
|
This question already has an answer here: For example,
The output of this program should be:
How can I achieve that using reflection? |
|||||||
|
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.
|
It is not possible to do this with reflection, because variables won't have a name once compiled to IL. However, you can use expression trees and promote the variable to a closure:
You can use this method as follows:
Note that this is pretty slow, so don't use it in performance critical paths of your application. For a more complete example, see here. |
|||||||||
|
|
You can't, using reflection. |
||||
|
|