Authentication & Authorization are the important part of any Web Application where users are authenticated based on their credentials & their privileges are validated to Authorize to perform actions. There are different types of authentication like Form Authentication, Windows Authentication…
Task & Async Await in C#
Task in C# Created with Task.Run & Task.Factory methods,Async Await helps to improve the overall usability of an application such as blocking
Threading in C# – Part 2
In our previous article Threading in C# Part1 we have seen multi threading in C# with an example using System.Threading. In this article, we will see what is Task Parallel Library or TPL in C# & we will discuss Parallel…
Threading in C# -Part 1
Threading is a very important concept among different programming languages. It helps to improve the performance of an application. In this article, we will explore threading in c# with some good examples which will help to understand the concept easily.…
Exception in C#
What is an Exception? Exceptions occur in a program when something disrupts the normal flow of the program. It could be due to an error inside the code written or when the specific condition met which is not handled properly.…
Partial Class in C#
Partial class in C# allows splitting code across different files. Let us see Partial Class, interface, and method with an example in detail.
Delegates in C#
What are the Delegates? Delegates are function pointer in C#. It can only point to functions which are matching to the signature of the delegate. Delegates are very useful to write loosely coupled codes, also it is used to code…
C# Abstract Class
Abstract Class in C# is similar to Interface but with some differences. In this article let us explore the features of abstract modifiers in detail with real-time examples. Abstract Modifier in C# An abstract modifier is used in C# to…
Interfaces in C#
In our previous articles we have covered Classes, Inheritance, Virtual Keyword, etc. let us discuss another interesting topic, interfaces in c#. What is an Interface? The interface helps us to define a contract or group related functionality together. It is…
Virtual Keyword in C#
We have seen Class, Inheritance, etc. in our previous article. In this article let us discuss the virtual keyword in c#. This is one of the common interview topics in C#. Virtual Keyword or Modifier in C# When we declare…