Dispose() is called by as an indication for an object to release any unmanaged resources it has held.
Finalize() is used for the same purpose as dispose however finalize doesn’t assure the garbage collection of an object.
Dispose() operates determinalistically due to which it is generally preferred.
What is ASP.net / C# / VB.NET Technology? Class Library
ASP.NET includes an enormous class library which was built by Microsoft. Because this class library is so large, it encapsulates a a huge number of common…
Difference between .NET 2.0/3.0/3.5 Framework NET framework 2.0:
It brings a lot of evolution in class of the framework and refactor control including the support of
Generics
Anonymous methods
Partial class
Nullable…
Cookieless Forms Authentication in ASP.Net Forms authentication uses a cookie to identify a user. However, Forms authentication also supports a feature named cookieless authentication. When cookieless authentication is…
Page_Load in ASP.NET architecture The Page Life Cycle EventsPage_Load : The Page_Load event is triggered. This method can be used to populate and bind data to your controls either from the database or any other…