Visual studio does not show all the compile errors at once.
for example one time it says I have two errors and when I fix them then 102 more compile errors are showing up and these new errors are not dependent on those two previous errors.
How can we tell it to go through all the code and show all compile errors at once
Visual studio does not show all the compile errors at once. for example one
Share
This is impossible to answer without knowing what compiler you use. But in general you can’t expect the full list of errors to be useful, one bad declaration can generate a slew of other errors in code that isn’t actually wrong. You can only really trust the first few errors.
Chip away at it, one error at a time, starting from the top of the list. And make sure that your changes don’t in turn generate a whole bunch of new errors. Which is what is going on by the sound of it.