类Image有两个名称空间。一个是iTextSharp
,另一个是System.Windows.Control.Image
。
现在我要使用完整的引用,即System.Windows.Control.Image a = new ..
和iTextSharp.text.Image b = new ...
是否有任何方法可以对命名空间进行别名,因此我不必编写完整的命名空间。
答案 0 :(得分:26)
是的,只需使用:
using Img = System.Windows.Control.Image;
在你的名称空间声明中。
然后,您可以使用Img
别名,因为您之前使用的是完全限定名称。
答案 1 :(得分:4)
尝试:
using yourAlias = System.Windows.Control.Image;