JetBrains Rider
 
Get JetBrains Rider
Get your hands on the new features ahead of the release by joining the Early Access Program for Rider 2025.1! Learn more

Code Inspection: Empty control statement body

Last modified: 21 March 2024

There are cases where you need to have control statements (statements that normally require a body, for example while or foreach) with an empty body. One example is a busy loop where a while statement does nothing in its body.

If you use an empty statement as a body, for example while (DoSomething()) ;, JetBrains Rider suggests to replace the empty statement with an empty block, that is while (DoSomething()) {}.

With the empty block, you are less likely to come across issues like the following when you later modify your code: