|
The
applications created acquire memory. Memory management includes deallocating this acquired resources
and acquiring them.............
Yes, it is possible to force Garbage Colletcion . The way to do it is
by using GC.Collect()....................
It is a method for
releasing resources that an object acquires.............
CLR performs garbage collection on
small objects and large objects separately. It maintains separate heaps for these two
types of objects..............
Circular referencing issue happens when two objects refer to each other. Usually
in a parent-child relationship, situations occur where a child interacts with
the parent object and has a reference held to the parent object...................
Also read
Garbage collection helps in releasing memory occupied
by objects. CLR automatically releases these unused
objects..........
Dispose method belongs to IDisposable interface. It
is used to free unmanaged resources like files, network
connection etc..............
This
article includes brief about ASP.NET, advantages of
ASP.NET, navigation sequence of ASP.NET web form, web
Form components, .NET framework, event handlers in
ASP.NET, web form events, server control events in
ASP.NET, and server controls vs. HTML controls,
validation controls, navigation, and steps to store
cookies, ways to authenticate and authorize users in
ASP.NET
etc.
|