converting C# windows forms app to Managed C++

  • Thread starter Thread starter nebiyou1
  • Start date Start date
N

nebiyou1

Is there a way to convert a C# win form app to a Managed C++? Perhaps
by importing the resx file. Thank you in advance for your help.

Neb
 
Is there a way to convert a C# win form app to a Managed C++? Perhaps
by importing the resx file. Thank you in advance for your help.


Only by converting from C# to C++, which shouldn't be too hard, although I
don't know of any automated tool that'll do it.

The .resx file doesn't contain anything interesting.
 
Thank you for your response. What I ended up doing was to copy the
controls from my C# Project to my Managed C++ project and rewrite the
rest of the code. I am not finished yet but things seem to be ok thus
far. I wish there was a tool that could also copy all the event
handeling methods etc also.
 
Thank you for your response. What I ended up doing was to copy the
controls from my C# Project to my Managed C++ project and rewrite the
rest of the code. I am not finished yet but things seem to be ok thus
far. I wish there was a tool that could also copy all the event
handeling methods etc also.
 
Back
Top