|
-
Dec 14th, 2003, 06:04 PM
#1
Managed code..??? *Solved*
I was asking nearly the same code in the game section some days ago...but I might have been asking in the wrong section. I have seen a lot of books latly about Managed DirectX. But I did read in a post about managed code in a C++ post. So maybe it is used spesially in C++ or something. I have no idea. So my short question is. What is managed code...
Last edited by NoteMe; Dec 15th, 2003 at 09:02 AM.
-
Dec 14th, 2003, 06:19 PM
#2
Managed code is code that requires the .NET framework and compiles on execution.
So basically anything made using Microsoft's propritary framework is managed code
-
Dec 14th, 2003, 06:21 PM
#3
Like JIT? So you can't make managed code in VC++ 6.0?
-
Dec 15th, 2003, 04:57 AM
#4
Managed Extensions for C++ is an extension to the Microsoft C++ compiler that allows a subset of C++ plus some keywords to be compiled to MSIL and use .Net features. The special thing about it is that you can mix Managed and Unamanaged code in one project or even one source file. This allows you to easily create .Net interfaces for native libraries, which is the purpose of Managed C++.
For everything else, Managed C++ is a pain to use.
VC++6 doesn't know about .Net and therefore not about Managed C++.
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.
-
Dec 15th, 2003, 09:01 AM
#5
Thanks that really cleared things up....you GURU master C++ god....
BTW say hello to the kangaroos in Austria...
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
|