Is there a performance gain in removing unnecessary namespace (using) directives?(删除不必要的命名空间(使用)指令是否有性能提升?)
问题描述
在我的类中有多少使用编译器指令是否重要?删除那些不必要的是否有性能提升?
Does it matter how many using compiler directives are in my classes? Is there a performance gain in removing those that aren't necessary?
虽然我喜欢编写精简的代码,但有时代码段会被修改,并且没有机会回去检查所有包含的命名空间是否真的有必要.或者,我不会返回并删除那些由 Visual Studio 自动插入的内容.
Although I enjoy writing streamlined code, on occasion, code segments get modified, and don't have the opportunity to go back and check to see if all of the included namespaces are really necessary. Or, I don't go back and remove those that are auto-inserted by visual studio.
即:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
谢谢!
推荐答案
不,没有性能优势.
编译器不会为 using
语句生成 IL(可执行代码).IL 仅针对那些利用您提供的 using
语句的类、方法调用等生成.
The compiler doesn't generate IL (executable code) for using
statements. IL is only generated for those classes, method calls, etc. that take advantage of the using
statements you provide.
因此,未使用的 using
语句的唯一影响可能是略微增加您的构建时间,或者在您想知道他们为什么在那里之后让下一个开发人员.
Consequently, the only effect unused using
statements might have is to slightly increase your build time, or make the next developer after you wonder why they are there.
这篇关于删除不必要的命名空间(使用)指令是否有性能提升?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:删除不必要的命名空间(使用)指令是否有性能提升?
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 输入按键事件处理程序 2022-01-01