C#中的命名空间前缀

时间:2009-05-14 09:36:10

标签: c# namespaces

我已经可以做了:

using System.Windows.Forms;
Button b;

或:

System.Windows.Forms.Button b;

但我想这样做:

using System.Windows;
Forms.Button b;

(因为Button与另一个名称空间不明确,键入System.Windows.Forms.Button太长了。)

然而这给了我一个错误,我怎么能实现这个呢?

由于

1 个答案:

答案 0 :(得分:11)

命名空间别名:

using Forms = System.Windows.Forms;

除非您在该命名空间中使用类,否则“使用System.Windows”现在是多余的。