ways tools to use c++ header files in c#

  • Thread starter Thread starter weixian_shen
  • Start date Start date
W

weixian_shen

I need to make use of my previous work in C++. This involves very
complex data structure, over 5000 lines of data structure defined in
headers. Is there an easy way to convert those headers into C#?
 
Is there an easy way to convert those headers into C#?

No. Have you considered using managed C++ instead?


Mattias
 
I need to make use of my previous work in C++. This involves very
complex data structure, over 5000 lines of data structure defined in
headers. Is there an easy way to convert those headers into C#?

One suggestion, keep your C++ code in C++, don't port to C#. If you want to
take advantage of the features of .NET take a look at managed C++ or better
the upcoming C++/CLI.

Willy.
 

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

Back
Top