Expert System in C#

V

Val Paliy

Hello, everyone --

I have in mind an expert system, but the problem is I program in C#, and my
partner - in C++. If she writes an algorithm in C++, can VS 2008 Express
Edition convert it to C# afterwards? I want the application to be
cross-platform, that's why C# was chosen as the main language.

Appreciate any feedback!

Thank you!
 
X

xcal

try Sharpdevelop, its free also, I have not it at this moment, but I believe
it can help you, by creating a COM components for your C# components
because Sharpdevelop doesnt work, as I remember, with C++.

hope this helps, Carlos
 
V

Val Paliy

Thanks, Pete! Actually, making her convert her programming religion sounds
like a good idea! :)
 
I

inam gul

hi friend,
if your partner write code in c++ using visual studio 2003/5/8, then you can call that from your code in c#.
The trick is that your partner will have to generate dll files as output, instead of exe,
and the code must be in managed c++, that is in C++.Net.

you can do a little study on google about c++.net and how it works.

hope it would help you.

inam
 
X

xcal

"code must be in managed c++, that is in C++.Net."

I remember vaguely now,
you can use also MS C++ 6.0, but you'll have to
arrange those "mangled names".

Another aproach is to use COM dlls.
VS 6.0 also permits to you to implement
such components.

In VS 2003 u use C++.net.
Finally until VS2005, people work with CLI C++
for VS2008 I dont know what happens.

hope this helps, Carlos.

hi friend,
if your partner write code in c++ using visual studio 2003/5/8, then you
can call that from your code in c#.
 

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