别名/缩短.NET中的命名空间

时间:2010-11-05 06:45:47

标签: c# .net

类Image有两个名称空间。一个是iTextSharp,另一个是System.Windows.Control.Image

现在我要使用完整的引用,即System.Windows.Control.Image a = new ..iTextSharp.text.Image b = new ...

是否有任何方法可以对命名空间进行别名,因此我不必编写完整的命名空间。

2 个答案:

答案 0 :(得分:26)

是的,只需使用:

using Img = System.Windows.Control.Image;

在你的名称空间声明中。

然后,您可以使用Img别名,因为您之前使用的是完全限定名称。

答案 1 :(得分:4)

尝试:

using yourAlias = System.Windows.Control.Image;