I am trying to get the nameof
a variable being passed through a foreach
loop.
string[] printThis = {"doesntMatter"};
string[] andThis = {"doesntMatter"};
string[][] arrayOfArrays = {printThis, andThis};
foreach(string element in arrayOfArrays)
{
string theNameOfTheElement = nameOf(element);
Console.WriteLine(theNameOfTheElement + " ");
}
Instead of getting the desired result of
printThis andThis
I'm obviously getting just:
element
Is this not allowed? A better way?
nameof
operator is a lot simpler than you imply: it gives you the name of the variable/field/type/etc. that you pass to it as parameter. In your case that's an equivalent of"element"
string.There is no way to figure out the variable that was used to set a
string[][]
element, unless you save that information in a separate array or collection:A better approach is to make a collection of name-array pairs: