Using Statements vs Namespace path? C#(使用语句与命名空间路径?C#)
问题描述
我最近停止使用 using-statements 而是使用任何 的完整命名空间路径.net 我调用的对象.
I recently stopped using using-statements and instead use the full namespace path of any .net object that I call.
例子:
using System;
namespace QuizViewer
{
class Class1
{
Console.WriteLine("Hello World!");
}
}
这就是我现在所做的.
namespace QuizViewer
{
class Class1
{
System.Console.WriteLine("Hello World!");
}
}
在你问我为什么这样做之前,我使用这种样式是为了可以准确地看到我的对象来自哪里,并且在使用不同的 Timer 对象和其他具有相似名称的对象时更容易.
Before you ask why I do this, I am using this style so that I can see exactly where my objects are coming from and it's easier when using the different Timer objects and other objects with similar names.
这种编程风格有没有性能提升或降低?
Is there any performance increase or decrease in this style of programming?
推荐答案
性能差异为零,因为编译器总是输入全名 - using 只是编译器的提示,运行时不知道也不支持.
There is zero performance difference because the compiler ALWAYS puts in the full name - using is only a hint for the compiler, the runtime doesn't know or support that.
但是,一旦你记住了这些对象的来源,你就会认为这很愚蠢和冗长.噪音太大了,人们只知道 Path 来自 System.IO,Console 在 System 中,StringBuilder 在 System.Text 中.
However, once you memorize where the objects come from you will look at this as silly and verbose. There is just so much noise and people just know that Path is from System.IO, Console is in System and StringBuilder is in System.Text.
您的方法的一个缺点:不使用,在当前命名空间之外没有扩展方法.享受编写 System.Linq.Enumerable.Where(inputSequence,...)
而不仅仅是 inputSequence.Where(...)
的乐趣 :)
One downside of your approach: Without using, no extension methods outside of the current namespace. Have fun writing System.Linq.Enumerable.Where(inputSequence,...)
instead of just inputSequence.Where(...)
:)
这篇关于使用语句与命名空间路径?C#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用语句与命名空间路径?C#
基础教程推荐
- rabbitmq 的 REST API 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01