11

可能重复:
为什么要使用指令删除不必要的 C#?
未使用的 using 语句如何影响性能

c# 中未使用的用法会影响运行时性能吗?如果是,怎么做?

using System;
using System.Collections.Generic;
using System.ComponentModel; -----//Unused
using System.Data;---------------//Unused
using System.Drawing;-----------//Unused
using System.Text;-------------//Unused
using System.Windows.Forms;
using System.Threading;------//Unused
using System.Linq;----------//Unused
using System.IO;-----------//Unused
using System.Diagnostics;-//Unused
using System.Data.OleDb;
using OBID; 
4

2 回答 2

13

否,但它会影响 IDE 性能和项目的编译过程。我可以给你一个简短的例子。如果您曾经使用过来自 devexpress 的 coderush http://devexpress.com/Products/Visual_Studio_Add-in/Coding_Assistance/,他们的 IDE 优化器和代码优化器也会建议您删除未使用的命名空间。

更新:这里是来自 Dmitriy 博客的更多使用信息 在 C# 代码中删除未使用的使用的原因很少。

•It is useless code, that just creates clutter in your source code and it also confusing for the developer because you don’t know which namespaces are actually used.
•Over time as your code changes it can accumulate a lot of unused using statements which create even more clutter in you code.
•It can make your compiling faster, since compiler does not have to look up all those extra unused namespaces.
•It will help avoid name conflict with new items that you going to add to your solution if both of those have same names.
•It will reduce number of items in your Visual Studio editor auto completion

有几种方法可以删除那些未使用的用途,您可以在每个文件上单独执行

http://msdn.microsoft.com/en-us/library/bb514115.aspx

您还可以下载名为 batchFormat for Visual Studio 2010 的插件,它可以帮助您删除整个项目中所有未使用的用途。

http://www.addictivetips.com/windows-tips/batch-format-remove-unused-usings-and-format-visual-studio-document/

于 2012-08-19T13:30:13.970 回答
0

不,他们没有。事实上,无论是否使用它们,它们都没有任何运行时意义。它们只是一个编译时常量,允许编译器识别类型而无需明确指定它们的全名。

他们的主要问题是,一个充满未使用usings 的文件会迫使您在检查代码时创建一个毫无意义的 PgDn。

于 2012-08-19T13:29:17.053 回答