awaismalik82
February 13th, 2004, 05:10 AM
Hey all! Actually i need some refrence regarding the interoperability of C++ code in C#, i have some libraries in C++ (OpenCV to be exact) that i need to utilized inside C# is there anyway i can do that by writing some kinda wrapper or by some other means? Thanx for the help in advance
Awais Malik
jigen3
February 13th, 2004, 09:05 AM
hi,
as i understand it, assemblies of different .net languages can be used in all the languages. i think you would have to compile the library in managed c++ first which will generate the assembly with the CIL, etc., then with a c# "using" statement you should be able to access it in c#. i read an example of this, but maybe someone else can help you more.
jigen3