This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
Fatal Error C1026
parser stack overflow, program too complex
The space required to parse the program caused a compiler stack overflow.
Decrease the complexity of expressions by:
- Decreasing nesting in for and switch statements. Put more deeply nested statements in separate functions.
- Breaking up long expressions that involve comma operators or function calls.