Easiest Way to Read and Import Excel File Data into DataTable C#

In this article we will discuss how to Read or Import Excel file data into C# DataTable. For this example we will be using the ClosedXML .NET library.   What is ClosedXML? ClosedXML is .NET library which is used for manipulating and writing the 2007+ Excel files. The ClosedXML library is available for free on […]

Learn Partial Class in C# With Simple Example

A Partial Class is a special feature of C#. Partial Class provides a special ability to implement the functionality of a single class into multiple files. All these files are combined into a single class file when the application is compiled. A partial class is created by using the partial keyword. This keyword is also useful […]