Order of imports in C#
Posted
by BrianK
on Stack Overflow
See other posts from Stack Overflow
or by BrianK
Published on 2010-04-16T13:49:06Z
Indexed on
2010/04/16
13:53 UTC
Read the original article
Hit count: 406
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
© Stack Overflow or respective owner