Latest Answer: You now know that compilers that target the .NET Framework produce managed modules and that managed modules contain CIL and metadata. But you might be surprised to learn that the CLR is incapable of using managed modules directly. That’s because the fundamental ...
Latest Answer: CLR takes care of the garbage collection process.It calls the garbage collection manager which holds a stack of all the references made by your program.It first goes to the root directory of the application and checks for all the references and stacks ...
Latest Answer: If the assemblies is private means doesn't worry about it. The assembly name is unique. Whereas the assemblies is like shared assembly find the name and versioning number of the assembly. It is good for us. ...
Latest Answer: If you want to do private assembly ?Goto command prompt Ist you have to set the path and type csc /t:library filename then you will be created assembly which will stored in the application directory. for ex. i have file with hello.csi used to csc ...
John wrote on Tuesday, 13 September 2005 20:12:39:The .NET Assemblies Part1This online presentation about .NET assemblies helps the webmasters to know about the three tier architecture and about .NET
Latest Answer: Dear Friend,The assembly which is used only by a single application is called as private assembly. Suppose you created a DLL which encapsulates your business logic. This DLL will be used by your client application only and not by any other application. ...
Latest Answer: Assembly, which is a reusable, versionable, and self-describing building block of a common language runtime application. ...
Latest Answer: AppDomain is created by the .Net worker Process(aspnet_wp.exe). ...
Latest Answer: Operating systems and runtime environments provide some form of isolation between applications. This isolation is necessary to ensure that code running in one application cannot adversely affect other, unrelated applications ...
Latest Answer: A language used as the output of a number of compilers and as the input to a just-in-time (JIT) compiler. The common language runtime includes a JIT compiler for converting MSIL to native code. ...
Latest Answer: It means while compilation activated and deactivated by garbage collection.that's why vb.net, and c# .net are managed code.. ...
View page << Previous 1 2 [3] 4 5 Next >>

Go Top