In c# why is it not allowing to create variable names dynamically? I am trying something like this:
for (int i = 0; i < ceoList.Count; i++)
{
List<VP> "vp" + i = new List<VP>();
}
I want to generate variable names at run time. Like "vp" + i
here.