As far as I know, there is no really reliable tool for converting C++ code to C#, since they use much different aspects of the CLR, and since it also depends on what the type of code you are converting. Whether it is unmanged or managed,
or whether your code makes use of the STD C++ library, and whether you need to decide if switching to the .NET Framework is really good for you.
You're probably better off using Managed Extensions for C++.
jradi
Member
110 Points
25 Posts
convert c++ code to c#
Mar 02, 2005 03:15 PM|LINK
decpersona
Member
310 Points
62 Posts
Re: convert c++ code to c#
Apr 08, 2005 12:56 AM|LINK
As far as I know, there is no really reliable tool for converting C++ code to C#, since they use much different aspects of the CLR, and since it also depends on what the type of code you are converting. Whether it is unmanged or managed, or whether your code makes use of the STD C++ library, and whether you need to decide if switching to the .NET Framework is really good for you.
You're probably better off using Managed Extensions for C++.
Caddre
All-Star
26581 Points
5308 Posts
Re: convert c++ code to c#
May 26, 2005 04:53 AM|LINK
http://www.Pinvoke.net
Gift Peddie