IRONSOFTWAREHOME
USING IRONXL

How to Import CSV To Datatable in C#

Curtis Chau
Curtis Chau
Updated: April 21, 2026

Welcome to this beginner's tutorial on importing CSV (comma-separated values) files into a DataTable in C# using IronXL. This guide will provide you with an easy-to-follow approach, ensuring that even if you are new to C#, you'll find this process straightforward. We'll cover every step, from setting up the environment to writing the source code. By the end of this tutorial, you'll have a clear understanding of how to convert CSV data into a DataTable, manage DataTable columns, and handle various aspects of CSV documents in C# using a file reader and IronXL.

Prerequisites

Before we dive in, ensure you have:

  • Basic knowledge of C#
  • Visual Studio installed on your local machine
  • The IronXL library, which can be obtained through the NuGet Package Manager

Understanding the Basics

What is a CSV File?

A CSV file (Comma Separated Values file) is a type of plain text file that uses specific structuring to arrange tabular data. It's a common format for data interchange as CSV is simple, compact, and works with numerous platforms. In a CSV file, data is separated by commas, and each new line signifies a new row, with the column headers often present in the first row.

Understanding DataTables in C#

A DataTable is part of the ADO.NET library in C# and represents a single table of in-memory data. It comprises rows and columns, and each column can be of a different data type. DataTables are highly flexible and can represent data in a structured format, making them ideal for handling CSV file data.

Setting Up Your Project

Step 1: Create a New C# Project

  1. Open Visual Studio.
  2. Select File > New > Project.
  3. Choose a C# Console or Windows Forms application, and name it appropriately.

Step 2: Install IronXL

IronXL is a powerful library that allows you to work with Excel and CSV files in C#. To use it, you need to install it via NuGet Package Manager. In Visual Studio:

  1. Go to Tools > NuGet Package Manager > Manage NuGet Packages for Solution.

  2. Search for IronXL.Excel.

    How to Import CSV To Datatable in C#: Figure 1 - IronXL

  3. Install the package to your project.

Reading CSV Files into DataTables with IronXL

Step 1: Set Up Your Environment

using IronXL;
using System.Data;

These using statements include the necessary namespaces for our task.

Step 2: Create a Method to Import CSV

Define a class, CsvToDataTable, with a static method ImportCsvToDataTable. This method will be responsible for converting the CSV file into a DataTable.

public class CsvToDataTable
{
    public static DataTable ImportCsvToDataTable(string filePath)
    {
        // Code snippet to import CSV will be placed here
        return null; // Placeholder return statement
    }
}

Step 3: Load the CSV File

Inside the ImportCsvToDataTable method, start by loading the CSV file. IronXL provides a straightforward way to do this:

// Load the CSV file
WorkBook workbook = WorkBook.LoadCSV(filePath);

WorkBook.LoadCSV is a method in IronXL to load CSV files. Here, filePath is the path to your CSV file.

Step 4: Convert CSV to DataTable

Convert the loaded CSV data into a DataTable. This step is crucial as it transforms the data into a format that can be easily manipulated and displayed within a C# application.

// Get the first worksheet
WorkSheet sheet = workbook.DefaultWorkSheet;
// Convert CSV worksheet to DataTable
DataTable dataTable = sheet.ToDataTable();
return dataTable;

This snippet converts the CSV data into a DataTable. DefaultWorkSheet fetches the first worksheet from the workbook, equivalent to the entire CSV data in the case of a CSV file. The ToDataTable method is a powerful feature of IronXL that efficiently maps the CSV data to a DataTable structure, including a column header row if present in the first row of the CSV file.

Step 5: Utilize the Method in Your Application

Now, use the ImportCsvToDataTable method in your application. For instance, you might want to call this method when the application starts or when the user uploads a CSV file.

// Usage
string csvFilePath = "csvfile.csv";
DataTable dataTable = CsvToDataTable.ImportCsvToDataTable(csvFilePath);

This code snippet demonstrates how to call the ImportCsvToDataTable method. Replace "csvfile.csv" with the actual file path of your CSV file.

Step 6: Working with the Output DataTable

Once you have the DataTable, you can perform various operations like displaying the data in a user interface, filtering, or processing the data. Here are some examples:

Displaying Data in a Console Application

foreach (DataRow row in dataTable.Rows)
{
    foreach (var item in row.ItemArray)
    {
        Console.Write($"{item} ");
    }
    Console.WriteLine();
}

This code iterates through each row and column in the DataTable and prints the data to the console.

Filtering Data

You can use LINQ to filter data in the DataTable. For example, if you want to select rows where a specific column meets a condition:

var filteredRows = dataTable.AsEnumerable()
                            .Where(row => row.Field<string>("ColumnName") == "SomeValue");

Replace "ColumnName" and "SomeValue" with the column name and the value you're filtering for.

Complete Code Snippet

Here is the complete source code which you can use in your project:

using IronXL;
using System;
using System.Data;
using System.IO;

public class CsvToDataTable
{
    public static DataTable ImportCsvToDataTable(string filePath)
    {
        // Check if the file exists
        if (!File.Exists(filePath))
        {
            throw new FileNotFoundException($"The file at {filePath} was not found.");
        }

        // Load the CSV file
        WorkBook workbook = WorkBook.LoadCSV(filePath);
        // Get the first worksheet
        WorkSheet sheet = workbook.DefaultWorkSheet;
        // Convert the worksheet to DataTable
        DataTable dataTable = sheet.ToDataTable();
        return dataTable;
    }
}

class Program
{
    static void Main(string[] args)
    {
        // Usage
        try
        {
            string filePath = "sample_data.csv"; // CSV file path
            DataTable dataTable = CsvToDataTable.ImportCsvToDataTable(filePath);
            foreach (DataRow row in dataTable.Rows)
            {
                foreach (var item in row.ItemArray)
                {
                    Console.Write($"{item} ");
                }
                Console.WriteLine();
            }
        }
        catch (Exception ex)
        {
            Console.WriteLine($"An error occurred: {ex.Message}");
        }
    }
}

You can use this code in the Program.cs file. Don't forget to add the license of the IronXL if you are working in the production environment.

Output Of Code

Once you run the code, it'll load the CSV file and import its data to the DataTable. After that, it'll show the contents of the DataTable columns in the console. It helps to verify that the data is correctly imported into the DataTable.

How to Import CSV To Datatable in C#: Figure 2 - Output

Handling Different Scenarios

In real-world scenarios, CSV files can vary significantly in format and structure. It's important to handle these variations to ensure your application is robust and versatile. Let's expand on how to manage different scenarios when importing CSV data into a DataTable using IronXL.

Handling a Different Delimiter

Commas are the default delimiter in CSV files. However, CSV files may not always use commas to separate values. Sometimes, a semicolon, tab, or other characters are used as delimiters. To handle this in IronXL:

Specifying a Custom Delimiter: Before loading the CSV file, you can specify your file's delimiter. For example, if your file uses a semicolon (;), you can set it like this:

WorkBook workbook = WorkBook.LoadCSV(filePath, listDelimiter: ";");

Handling Large CSV Files

When dealing with large CSV files, it's important to consider memory usage and performance. IronXL provides efficient ways to handle large files without loading the entire file into memory at once. You can read the file in chunks or utilize streaming APIs provided by IronXL to manage memory usage effectively.

Conclusion

Importing CSV data into a DataTable using IronXL in C# is straightforward. It enhances the data manipulation capabilities of your application, allowing you to handle CSV files efficiently. With the steps outlined in this tutorial, beginners can easily integrate this functionality into their C# projects.

IronXL offers a free trial for users to explore its features. For those seeking more advanced capabilities and support, licensing options are available.

Curtis Chau
Technical Writer

Curtis Chau holds a Bachelor’s degree in Computer Science (Carleton University) and specializes in front-end development with expertise in Node.js, TypeScript, JavaScript, and React. Passionate about crafting intuitive and aesthetically pleasing user interfaces, Curtis enjoys working with modern frameworks and creating well-structured, visually appealing manuals.

...
Read More

Related Articles

Key in blue circle

Get your free 30-day Trial Key instantly.

Your trial license will be sent to your email address

No limitations. 100% unlocked. No credit card.

bullet_checkedNo credit card or account creation requiredNo limitations. 100% unlocked. No credit card.
  • Logo Aetna
  • Logo NASA
  • Logo GE
  • Logo Porsche
  • Logo USDA
  • Logo Qatar
Join Millions of Engineers who’ve tried IronPDF
Book your free Live Demo
Booking Badge

Trusted by Millions of Engineers Worldwide

Iron Software's customer logos
Get Your No-Obligation Consult
Complete the form below or email sales@ironsoftware.com
Your details will always be kept confidential.
Trusted by Millions of Engineers Worldwide
Iron Software's customer logos
Get your free 30-day Trial Key instantly.
No credit card or account creation required