我已经可以做了:
using System.Windows.Forms;
Button b;
或:
System.Windows.Forms.Button b;
但我想这样做:
using System.Windows;
Forms.Button b;
(因为Button与另一个名称空间不明确,键入System.Windows.Forms.Button太长了。)
然而这给了我一个错误,我怎么能实现这个呢?
由于
答案 0 :(得分:11)
命名空间别名:
using Forms = System.Windows.Forms;
除非您在该命名空间中使用类,否则“使用System.Windows”现在是多余的。