Virtual Method in C#
C# virtual method is a method that can be redefined in derived classes. In C#, a virtual method has an implementation in a base class as well as derived the class. It is used when a…
C# virtual method is a method that can be redefined in derived classes. In C#, a virtual method has an implementation in a base class as well as derived the class. It is used when a…
What Is an Interface? First and foremost, interfaces in C# are a means to get around the lack of multiple inheritances in C#, meaning you cannot inherit from multiple classes but you can implement multiple…
What is Serialization in C#? Serialization in C# is the process of bringing an object into a form that it can be written on stream. It’s the process of converting the object into a form…
We all understand that functions in C# have a function signature, function body and a return type. The signature comprises the parameters sent to the function, the function body is the lines of code executed…
Check the apirouteconfig file in App_Data folder of the web API