I'm inside a for and I want to access to a Class.Constants. This Constants vars are in order like Constants.X1, Constants.X2....
I would like to access this constants inside my form like
for (i = 1; i = 10; i++)
{
int a = Constants.X + i;
int b = Constants.X + "20";
}
Is this able to do?