P
PGP
I am trying to work with some C# namespaces from managed c++. The namespaces
use a dot notation and generates a compiler error. Is there a way around
this?
#using "csharpassembly.dll"//has the namespace test and namespace
test.external under it.
void test()
{
test::test.external::class1* p = new test::test.external::class1()
;//error C2039- test is not a member of test.
}
use a dot notation and generates a compiler error. Is there a way around
this?
#using "csharpassembly.dll"//has the namespace test and namespace
test.external under it.
void test()
{
test::test.external::class1* p = new test::test.external::class1()
;//error C2039- test is not a member of test.
}