I can't find anything about this in the Mono Project Coding Guidelines.
Which is better:
using Something;
using SomethingElse;
namespace SomeNameSpace {
...
or
using Something;
using SomethingElse;
namespace SomeNameSpace {
...
I know it's not terrible important, but it can't hurt to do it right.
The Mono guidelines are different than those for .NET, but feel free to input .NET's answer to this question as well.