I ran across a piece of C# code today I had not seen before. The programmer defined a block of code using only curly braces (no if, class, function, etc).
{
The purpose of this is to illustrate that the int i is actually in a different scope than the incremented i below it.
int i
i