Hi SO,
for several reasons I need to port a C/C++ unmanaged project (VS 2008) to C# (preferably .net 3.5).
I'd need to know:
- whether, by any chance, exist some conversion-helping tools; let's say something translating the code syntax and asking you verifications/modifications for each problematic point (I guess I'm dreaming...)
where to find some useful howtos/articles... about it. They would be very useful if they contained specific hints like:
extern variables
should be set in public static classes (I don't know, I'm guessing...)
Please no suggestion like "You can call your c++ dll from .net", because I know it's possible, but just I can't.
P.S.
I've searched on goole and SO before asking, but I could't find any link/question/answer similar or helpful enough. If you find one or you think this question has to be closed, please don't hesitate
P.P.S.
Sorry for my poor english.
EDIT:
Some additional infos:
- The C/C++ project uses only STL and other basic functions, no 3rd Party libraries etc.
- I can't uses it direclty or wrapped from C# because our company need to mantain/modify the code and we're extremely more skilled in c# than in c++.