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.
In this article, we will discuss working with CSV files in C#. Working with CSV files in C# can be a very useful and importa..
In this article, we will discuss the LINQ in C#, with the help of quite a good coding example we wil..
In this article, we will discuss Reflection in C#, with the help of coding examples we will s..
Asynchronous programming has been widely used in C# almost in every kind of .Net application and async and await keywords have been the core of the same which hides most of the complexity to implement asynchronous programming in C# language and makes it easy for developer..
Asynchronous Programming
In this article, we will discuss Exception handling in C# with examples. The process of handl..
In this article, we will discuss Method overloading and Method overriding in C#, These two ar..
This article will explain some new C# 11 features that will make it simpler for you to write faster, clearer, and more expre..
This article explains the differences between String and StringBuilder in C#, as well as when to use each. Their justifications will assist us in deciding what should be used in..
In this article, we will discuss the usage of IEnumerable vs ICollection vs IList vs List in ..
In this article, We will learn about using the finally, finalize and dispose method, as well as what makes them different. In C# ..
In this article, we will discuss the usage of Readonly, const, and yield key..
In this article, we'll discuss about several new C# 10 features that will make it easier for you to develop code that is fas..
The distinctions between Single, SingleOrDefault, and <..
In this article, we will discuss dependency injection in C# and how to implement Dependency I..
In this article, we will discuss the difference between the List vs IEnumera..
In this article, we’ll discuss the Generic Collection Type<TKey, Tvalue> dictionary in C# with examples. A Dict..
In this article, we will discuss how to monitor a directory in C#. Monitoring changes in a folder is..
Calling the REST API endpoint to retrieve and update the data is a common requirement of Desktop/Web Application and Refit library makes it's super easy to call the external web service or API.
Refit library can be used in legacy .Net Framework, Xamarin as well .Net Core, and .Net Standard Frameworks. Refit 6 uses System.Text.Json as the ..
In this article, we will discuss the difference between the Dictionary vs Hashtable in..
In this article, we will discuss the Lambda expression in C#, with the help of quite a good c..
In this article, we will discuss the usage of Delegates, Action, and Func in C#,
Static Class
Static Class is a special kind of class that can't be instantiated means we can't create an instance of the static class in C# language. It can only contain static members like static methods, static constructors, static property, etc... A static class is a sealed class tha..
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..