.Net
-
Mar- 2020 -5 March
Difference between Finalize, Destructor and Dispose in C#
In this very post we are going to see the difference between Finalize, Destructor and Dispose in C#. Destructor: Destructor…
Read More » -
1 March
What are Delegates and what are the uses of the Delegates
A delegate in C# is similar to a function pointer in C or C++. Using a delegate allows the developer…
Read More » -
1 March
Difference between Model and ViewModel in MVC
In this post, we are going to discuss about the difference between Model and ViewModel with MVC. Before that we are going to start…
Read More » -
Feb- 2020 -29 February
Weak References in .Net
Weak references in .Net create references to large objects in your application that are used infrequently so that they can…
Read More » -
29 February
Preventing Cross-Site Request Forgery (XSRF/CSRF) Attacks in ASP.NET
CSRF attacks are possible against web sites that use cookies for authentication, because browsers send all relevant cookies to the…
Read More » -
29 February
Browser Caching and Types of Caching in Asp.Net
In this post I am going to explain how to prevent the browser caching of web pages in asp.net. It…
Read More » -
29 February
Difference between Abstract Class and Interface in C#
An Abstract class without any implementation just looks like an Interface; however there are lot of differences than similarities between…
Read More » -
29 February
Why multiple inheritance not allowed in C#?
The one of problem for not supporting the multiple inheritance lies in the Diamond Problem. The diamond problem is an…
Read More » -
26 February
Drowdown Cascading in Asp.Net MVC
In this post i will show you how we can cascade the dropdown or we can say how we can…
Read More » -
22 February
Razor View Engine in MVC
ASP.NET MVC includes two different view engines, the newer Razor View Engine and the older Web Forms View Engine. What is Razor? The Razor…
Read More »