.net 中未使用的用法会影响性能吗? [复制]
Posted
技术标签:
【中文标题】.net 中未使用的用法会影响性能吗? [复制]【英文标题】:Do unused usings in .net affect performance? [duplicate] 【发布时间】:2012-08-15 03:26:30 【问题描述】:可能重复:Why should you remove unnecessary C# using directives?How is performance affected by an unused using statement
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;
【问题讨论】:
@AvnerShahar-Kashtan 那你为什么不投票赞成关闭呢? :-) 我一注意到重复就标记了它,但我认为我实际上还不能投票关闭。 【参考方案1】:否,但它会影响 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/
【讨论】:
【参考方案2】:不,他们没有。实际上,无论是否使用它们,它们都没有任何运行时意义。它们只是一个编译时常量,允许编译器识别类型而无需明确指定它们的全名。
他们的主要问题是一个充满未使用的using
s 的文件会迫使你在检查代码时创建一个毫无意义的 PgDn。
【讨论】:
以上是关于.net 中未使用的用法会影响性能吗? [复制]的主要内容,如果未能解决你的问题,请参考以下文章