There are two ways as far as I know.
1. You can have 'using' directive for one of the namespaces and use fully
qualified names for the other.
2. You can shorten the name space path like that:
I think that syntax is as follows:
using Windows.Forms WF;
using MapPoint;
then you can refer to MapPoint:
Application app1;
and to Windows.Forms:
WF.Application app2;
"Wilfried Mestdagh" wrote:
> Hi,
>
> I have a System.Windows.Forms.Application and a MapPoint.Application. How
> tell the compiler that if I type: Application, that I mean
> System.Windows.Forms.Application ?
>
> Of course I can declare a var for it but I wonder if there are other ways ?
>
> --
> rgds, Wilfried
> http://www.mestdagh.biz