Lambda the Ultimate

inactiveTopic Introduction to Managed C++
started 1/14/2003; 12:57:01 AM - last post 1/14/2003; 12:57:01 AM
Ehud Lamm - Introduction to Managed C++  blueArrow
1/14/2003; 12:57:01 AM (reads: 1531, responses: 0)
Introduction to Managed C++
Managed Extensions for C++ are extensions to the Visual C++ compiler and language to allow them to create .NET code and enable access to the functionality of the .NET Framework. They include a set of Keywords and Attributes to extend the C++ language to work with, and generate, managed code. There are also some additional Pragmas, Pre-processor Directives, and Options for the Compiler, as well as some Linker Options. The first interesting thing to notice is that the Managed Extensions use C++ keywords and syntax, but they follow .NET rules for types and facilities. This creates, in effect, a language within a language.

Sam Gentile is writing a three article series on Managed C++.

I think it is obvious why we need to know about MC++, this being a Microsoft world and all.

From a more technical point of view, it is worth keeping in mind that much as we may approve of VM based language platforms, there are still many reasons for using native code. Thus, the ability to mix and match is very important, even though it introduces its own set of difficulties.


Posted to cross-language-runtimes by Ehud Lamm on 1/14/03; 12:59:04 AM