Current rule:
Limit usage of fully qualified type names to prevent name clashing. For example, don't do this:
var list = new System.Collections.Generic.List();
Instead, do this:
using System.Collections.Generic;
var list = new List();
If you do need to prevent name clashing, use a using directive to assign an alias:
using Label = System.Web.UI.WebControls.Label;
Current rule:
Limit usage of fully qualified type names to prevent name clashing. For example, don't do this:
Instead, do this:
If you do need to prevent name clashing, use a using directive to assign an alias: