Since everything has a limit, I was wondering if there is a limit to the number of nested for
loops or as long as I have memory, I can add them, can the Visual Studio compiler create such a program?
Of course a 64 or more nested for
loops would be not handy to debug, but is it doable?
private void TestForLoop()
{
for (int a = 0; a < 4; a++)
{
for (int b = 0; b < 56; b++)
{
for (int c = 0; c < 196; c++)
{
//etc....
}
}
}
}