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++ dlls 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

Popular posts from this blog

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -