tags:

views:

40

answers:

1

You can use a C++ class in a C# project by registering the C++ DLL in your C# project. My problem is that one of the C++ class has a function which has 4 parameters, 2 of which are of the type wchar_t, which is not available in C#. How can I use this function in my C# code?

A: 

this article may be of help: msdn article

KJN