There are two namespaces with class Image. One is iTextSharp and another WPF System.Windows.Control.Image.
Now I’ve to use complete reference i.e. System.Windows.Control.Image a = new .. and iTextSharp.text.Image b = new ...
Is there any way to Aliasing the namespace, so I don’t have to write complete namespace.
Yeps, just use:
In your namespace declaration.
Then you can use the
Imgaliased name as you used the fully qualified name previously.