|
-
Nov 1st, 2002, 07:14 AM
#1
Thread Starter
Lively Member
What is managed C++
Can somebody give me a very basic overview of what managed C++ is under .NET.
Many thanks
-
Nov 1st, 2002, 01:49 PM
#2
Stuck in the 80s
Posted by CornedBee:
Unmanaged C++ is traditional C++ the way we know it.
Managed C++ is a special capability of the Visual C++.NET compiler. It means that C++ code is compiled to .NET MSIML (bytecode) instead of native code, uses the .NET CLR (framework) and GC (garbage collection). Beside the /clr compiler switch it also requires a few special keywords to be used, the most important being __gc for class and/or pointer declarations (a bit tricky). The #import directive and the using keyword are also important, as well as the __delegate keyword.
-
Nov 4th, 2002, 12:23 PM
#3
Nice to see me quoted
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|