Combining c++ algorithm with c# GUI -
i have tracker algorithm implemented entirely in c++ (am working vs 2013 x64 on win7).
to plot tracks on world map want design gui (in c#) exploits built in graphical library in c#, should figure map on , want send it, periodically, relevant list of tracks computed tracker. of course, want able debug c++ algorithm vs while plotting tracks.
is there tutorial explains how correctly? possible?
you can use outer c++ dll
s in c# this:
[dllimport("user32.dll")] public static extern intptr findwindow(string classname, string windowtitle);
so can add reference dll
, call c# code.
i'm not sure if allow debug c++ code, guess check v. kravchenko comment , try enable debugging mentioned.
Comments
Post a Comment