January 6, 2006 at 8:06 am
Hi,
Can somebody please explain me what is managed code ?
I have found a lot of references in SQL Server 2005 literature to Visual Studio .NET (or 2005), Visual Basic.NET, C# as managed code.
What is the difference between managed and unmanaged code ? Is SQL unmanaged and why ? Is old Visual Basic 6 unmanaged ?
Thanks,
Mark
January 6, 2006 at 8:16 am
Maybe this can help
http://blogs.msdn.com/brada/archive/2004/01/09/48925.aspx
---------------------------------------------
[font="Verdana"]Nothing is impossible.
It is just a matter of time and money.[/font]
January 9, 2006 at 6:15 am
Managed code is the code which is managed by CLR(Common Language Runtime). All the key functions like talking to OS, resource allocation and garbage collection is all managed by your CLR in case of managed code.
In case of unmanaged code, you need to explicity write for resource allocation, garbage collection.
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply