How do you like to arrange your "using xxx" imports in C#? I got bored the other day and put them in order from shortest to longest.
using System;
using System.Web;
using System.Data;
using System.Linq;
using System.Web.UI;
using Telerik.Web.UI;
using System.Drawing;
using System.Collections;
using System.Configuration;
using System.Web.UI.WebControls;
using System.Collections.Generic;
Brian
