How to convert a VC# .NET project into a VC++ .NET project

K

Kueishiong Tu

I have a VC# .NET project which is imported from an OCX control using AxImp.
I would like to convert it into a VC++ .NET project. Is there any way to do
it and how to do it?
 
K

Kueishiong Tu

Dear David:

Do you have "Instant C++: convert VB or C# to C++/CLI"
product that works in the .NET Framework 1.1 platform?
 
D

David Anton

No. There was so little demand for conversion to Managed C++, that we
limited Instant C++ to conversion to C++/CLI, which of course requires .NET
Framework version 2 or higher.
--
http://www.tangiblesoftwaresolutions.com
C++ to C#
C++ to VB
C++ to Java
C++ to C++/CLI
Instant C#: VB to C# converter
Instant VB: C# to VB converter
Instant C++: convert VB or C# to C++/CLI
 
B

Ben Voigt [C++ MVP]

Kueishiong Tu said:
Dear David:

Do you have "Instant C++: convert VB or C# to C++/CLI"
product that works in the .NET Framework 1.1 platform?

The C++ compiler targetting .NET Framework 1.x was badly broken, considered
unfixable by Microsoft. Fixing the problems required not only a new
compiler but also sweeping changes to the runtime. These changes are
included in .NET 2.0. In fact, all the "workarounds" for the Managed
Extensions for C++ require using .NET 2 or later.

p/invoke and COM are the only reliable methods of interop in .NET 1.x

The upgrade from .NET 1.x to .NET 2.0 isn't optional like upgrading Office,
it's more like upgrading Internet Explorer where there are critical security
improvements and bug fixes included in the new version.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top