.Net Full notes in one shot for bca
1.1 Automatic Resource Management When it comes to .NET framework, the developers get efficient and automatic resource management systems like screen space, memory, network connections, and more. And this is all possible because of the common language runtime (CLR) of the .NET framework. In CLR, a garbage collector is an approach that serves as an automatic memory manager. The garbage collector here manages to allocate and release the memory for the .NET application. Every time a new object is created in the application, the common language runtime starts the process of allocating memory for the object from the managed heap. In this case, the runtime has the capability to handle object layout automatically and it also manages references to objects by releasing the references when they are not in use. 1.2 Cross-Language Interoperability Language interoperability is one of the features of this cross-platform framework that comes with the ability that enables the code to interact with...
Comments
Post a Comment