Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通过类名使用另一个 C# 项目的类是否更好。像这样
Buss_Logic.Class1 myClass1 = new Buss_Logic.Class1(); Buss_Logic.Class2 myClass2 = new Buss_Logic.Class2();
或通过using文件顶部的关键字
using
using Buss_Logic;
只要没有命名空间冲突,就可以使代码更紧凑/更易于阅读,以包含带有using关键字的命名空间。
如果对类的定义位置有任何疑问,请将鼠标悬停在类名上。工具提示将显示完全限定的类名。
如果存在命名空间冲突(例如File,在两个不同的命名空间中调用两个类,当前源文档中需要这两个类),则使用显式命名空间。
File
using只要名称没有冲突,请在文件顶部使用 a 。
鉴于类本身足够清晰,它使代码更易于阅读。