Posted 19 years ago
by Jeff Hutt
-
Blade Games World

Hmmm I think these bugs I'm posting are somehow related.
Bug:
If you have only a single "using" statement at the top of the document, the automatic indentation of braces goes wrong.
Like this:However, by adding an additional using statement all is right with the world.
Christian
Bug:
If you have only a single "using" statement at the top of the document, the automatic indentation of braces goes wrong.
Like this:
using System;
namespace foo
{ // why are they tabbed in?
}
using System;
using System.Collections;
namespace foo
{ // ah much better
}