Do you "organize" your 'using' statements?
More and more I find myself "grouping" my using statements ("Imports" in VB.NET). For example, I now try and do Microsoft framework namespaces first, then namespaces for DLL's developed at my employer and finally third party namespaces. Something like this:
using System; using System.IO; using System.Data; using <company> using <company>.<module> using <third-party> using <third-party>.<module>
Not sure why I do this. If anything, it gives me a rough idea of the types of references in the project. Those "groups" usually belong to a specific set of assemblies.
Or maybe I'm just not getting enough sleep... :)