carchive

  • Thread starter Thread starter Jon Vaughan
  • Start date Start date
J

Jon Vaughan

Hi,

Im looking to read and write to a file that has been created using the c++
carchive class. I have the code that does the reading and writting in c++,
but I want to use it in VB.Net, whats the best way to go about using this
code in my code ?

Thanks
 
Wrap your C++ code that uses CArchive in a library written in Managed C++ or
C++/CLI (depending on the CLR version) and use this library from VB.NET.
There is no CArchive compatible .NET implementation that I am aware of.

Marcus Heege
 
Back
Top