CLR

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • pooja

    #1

    CLR

    what is clr in .net architecture?

  • Mattias Sjögren

    #2
    Re: CLR

    [color=blue]
    >what is clr in .net architecture?[/color]

    See
    http://msdn.microsoft.com/library/en...ageruntime.asp

    In short, it's the runtime environment that loads, verifies, compiles
    and executes your maanged code. In addition to that it handles code
    access security, garbage collection and a bunch of other features.


    Mattias

    --
    Mattias Sjögren [C# MVP] mattias @ mvps.org
    http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
    Please reply only to the newsgroup.

    Comment

    • VidyaVrat

      #3
      RE: CLR

      CLR is the Execution Engine for Microsoft .NET, it provides the meaning to
      what .NET offers.

      As CLR is known as Common Language Runtime, means it is common among all the
      ..NET compliant languages(VB .NET,C#,C++ .NET,J# etc).

      It also helps in memory management, type safety, JIT Compilation etc.
      --
      a Microsoft .NET Purist
      MCT,MCSD.NET, MCAD and MCSD.


      "pooja" wrote:
      what is clr in .net architecture?
      >
      >

      Comment

      Working...