Hello!!
I have a very small dll written in c#.
Is there a way to translate it to c++ so it will work on systems that
don't have the .Net framework?
thanks!!
:wave:
Printable View
Hello!!
I have a very small dll written in c#.
Is there a way to translate it to c++ so it will work on systems that
don't have the .Net framework?
thanks!!
:wave:
Yes there is. Rewrite it in unmanaged C++. C++ and C# are similar but also have many differences. Also, you'll have to remove every reference to any .NET type. There may be a tool to translate C# to C++.NET, but I doubt that there's one that translates to unmanaged C++.
the problem is that I don't know unmanaged c++...
that's why I hoped that there a is a tool to translate it for me...
and how can I know which .Net references to delete?