A
Abubakar
Hi,
I compiled a simple code in c++/cli 2k5
public ref class Class1
{
public : void doit (char * c )
{
}
};
its now built into a managed dll. Now I create a new C# project and include
the reference of above compiled dll into this new project.
cppmngdlib.Class1 c = new cppmngdlib.Class1();
string s = "hello";
now I want to call the "doit" function. I cant just pass in the string of
C#. So how do I call it?
Regards,
-ab.
I compiled a simple code in c++/cli 2k5
public ref class Class1
{
public : void doit (char * c )
{
}
};
its now built into a managed dll. Now I create a new C# project and include
the reference of above compiled dll into this new project.
cppmngdlib.Class1 c = new cppmngdlib.Class1();
string s = "hello";
now I want to call the "doit" function. I cant just pass in the string of
C#. So how do I call it?
Regards,
-ab.