interportability of class between two platforms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have been working on Visual studia.NET. I have created one class using
VC++.NET,I want to resue that class in VB.NET.

Is it possible.. if yes then tell me what steps to be followed.

Thanks in advance.
 
You *may* be able to get this to work by just copying the assembly to the
mobile device, but using VC++.Net assemblies on mobile devices is not
supported. Even if you only use .Net features that are available on both
platforms, there are some C++ features that are only supported on the full
..Net framework. And before you ask, I'm not aware of a list of those
features. ;-)
 
Hi Mark,

I'm actually testing a fairly large C++.Net DLL written by somebody else
that does just that and works fine. BUT you're right that it isn't
supported, and the developer who wrote the code I'm testing told me he had a
number of issues he had to work around to get it to work.
 
Back
Top