61 lines
1.2 KiB
Plaintext
61 lines
1.2 KiB
Plaintext
== Why is this an issue?
|
|
|
|
Although unnecessary ``++using++`` won't change anything to the produced application, removing them:
|
|
|
|
* Will help readability and maintenance.
|
|
* Will help reduce the number of items in the IDE auto-completion list when coding.
|
|
* May avoid some name collisions.
|
|
* May improve compilation time because the compiler has fewer namespaces to look-up when it resolves types.
|
|
* The build will fail if this namespace is removed from the project.
|
|
|
|
=== Noncompliant code example
|
|
|
|
[source,csharp]
|
|
----
|
|
using System.Collections.Generic; // Noncompliant - unnecessary using
|
|
|
|
namespace Foo
|
|
{
|
|
public class Bar
|
|
{
|
|
public Bar(string path)
|
|
{
|
|
File.ReadAllLines(path);
|
|
}
|
|
}
|
|
}
|
|
----
|
|
|
|
=== Compliant solution
|
|
|
|
[source,csharp]
|
|
----
|
|
using System.IO;
|
|
|
|
namespace Foo
|
|
{
|
|
public class Bar
|
|
{
|
|
public Bar(string path)
|
|
{
|
|
File.ReadAllLines(path);
|
|
}
|
|
}
|
|
}
|
|
----
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
include::message.adoc[]
|
|
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|