Navigation:  StyleCop 4.3 > StyleCop 4.3 Rules > Ordering Rules >

SA1211: UsingAliasDirectivesMustBeOrderedAlphabeticallyByAliasName

Previous pageReturn to chapter overviewNext page

StyleCop 4.3

Send comments on this topic.

SA1211: UsingAliasDirectivesMustBeOrderedAlphabeticallyByAliasName
Glossary Item Box
TypeName

UsingAliasDirectivesMustBeOrderedAlphabeticallyByAliasName

CheckId

SA1211

Category

Ordering Rules

 

Cause

The using-alias directives within a C# code file are not sorted alphabetically by alias name.

Rule Description

A violation of this rule occurs when the using-alias directives are not sorted alphabetically by alias name. Sorting the using-alias directives alphabetically can make the code cleaner and easier to read, and can help make it easier to identify the namespaces that are being used by the code.
How to Fix Violations

To fix an instance of this violation, order the using-alias directives alphabetically by alias name.

 


© Microsoft Corporation. All Rights Reserved.