Suggestions on C++ .NET mixed managed and unmanaged

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

Guest

Could you suggests one or more books for .NET 1.1 (Vs2003) on mixing in the same file and mixing on the same project both managed and unmanaged C++ with also means to access C# from unmanaged C++

Thanks much

Please note I already have Richard Grimes book

--Joh
 
John Olbert said:
Could you suggests one or more books for .NET 1.1 (Vs2003) on
mixing in the same file and mixing on the same project both
managed and unmanaged C++ ...

I like this book:

http://www.apress.com/book/bookDisplay.html?bID=61

I also have the Grimes book you mention. It is quite a bit more
comprehensive (good) and a much tougher read (less good) than the one above
which is quite pragmatic in its approach to things.
with also means to access
C# from unmanaged C++.

I think I understand you but I'm not sure. Once you have a Managed C++ class
it can be consumed by all comers in the .Net space. You get that for free as
all .Net languages share the same object model (they don't all share the
same types exactly, but that is a nit, IMO).

FWIW, I've got a mixed mode assembly in MC++ that does telephony,
text-to-speech and speech recognition. It's more than a little surprising to
watch a JScript.Net "application" make use of it.

Regards,
Will
 
Back
Top