M
Mr Topom
Hi,
It seems that I did not explain weel the problem so this is a new try :
Just a simple question :
I have a managed C++ DLL
I want to use it in a C# application.
So I added : #using MyNamespace.SubNameSpace; (which is part of the managed C++ DLL)
But when I want to use my class : MyNamespace.SubNameSpace.Klass in C#, I need
to put all the namespace and the class name alone is not recognized...
If I put :
MyNamespace.SubNameSpace.Klass k = new MyNamespace.SubNameSpace.Klass; //OK
Klass k = new Klass; // BAD
Any idea why ?
Thx
It seems that I did not explain weel the problem so this is a new try :
Just a simple question :
I have a managed C++ DLL
I want to use it in a C# application.
So I added : #using MyNamespace.SubNameSpace; (which is part of the managed C++ DLL)
But when I want to use my class : MyNamespace.SubNameSpace.Klass in C#, I need
to put all the namespace and the class name alone is not recognized...
If I put :
MyNamespace.SubNameSpace.Klass k = new MyNamespace.SubNameSpace.Klass; //OK
Klass k = new Klass; // BAD
Any idea why ?
Thx