CodeToSolution.com provides coding solutions to Software Developers on different technical areas like ASP.Net Core, ASP.Net WebApi, ASP.Net MVC, C#, Entity Framework, Angular, Amazon Web Services and Sql Server etc.. and aims to increase productivity and efficiency of the Software Developers.

Categories

Latest Posts

extension methods in c sharp
How to implement and use Extension Method in C# with examples

C# provides a  very useful feature to extend the feature of an existing type without requiring the source code of original data type or permission of author who created the original type. Use of extension method is very common and every application creates one or more extension methods based on thier custom requirement. We will see some of the easiest example of Extension methods and see h..

extension methods in c sharp
Static class, Abstract class and Interface in C# with examples

C# provides a  very useful feature to extend the feature of an existing type without requiring the source code of original data type or permission of author who created the original type. Use of extension method is very common and every application creates one or more extension methods based on thier custom requirement. We will see some of the easiest example of Extension methods and see h..

func action delegates
Delegates, Action and Func in C#

In this article, we will discuss the usage of Delegates, Action, and Func in C#,

lambda
Lambda Expression in C#

In this article, we will discuss the Lambda expression in C#, with the help of quite a good c..

d hash
Dictionary vs Hashtable in C#

In this article, we will discuss the difference between the Dictionary vs Hashtable in..