项目作者: asmak9

项目描述 :
Download Nuget Package v1.0.0
高级语言:
项目地址: git://github.com/asmak9/CSVLibraryAK.Core.git
创建时间: 2020-10-07T15:51:41Z
项目社区:https://github.com/asmak9/CSVLibraryAK.Core

开源协议:

下载


C#.Net Core Import/Export CSV Library

CSVLibraryAK.Core provides CSV import and export feature in C#.NET Core using Datatable as primary data structure. You can install this library via Nuget packages. You can use this library into your any C#.NET Core 3.1 or above framework supported project that supports Datatable data structure. This library imports CSV file with or without header and with any number of columns into C#.NET Core Datatable structure. The import function will automatically detects the number of columns of the CSV file. Export method will export your data from C#.NET Core Datatable data structure to .csv format file.

Nuget Installation Version 1.0.0: https://www.nuget.org/packages/CSVLibraryAK.Core/

.NET Framework Supported Nuget Library: https://www.nuget.org/packages/CSVLibraryAK/

Basic Usage

  1. using CSVLibraryAK.Core;
  2. // Initialization.
  3. bool hasHeader = true;
  4. string importFilePath = "C:\\import.csv";
  5. string exportFilePath = "C:\\export.csv";
  6. // Impot CSV file.
  7. DataTable data = CSVLibraryAK.Import(importFilePath, hasHeader);
  8. // Export CSV file.
  9. CSVLibraryAK.Export(exportFilePath, data);

Examples

  1. Console Application .NET Core
  2. ASP.NET Core MVC Application
  3. WPF .NET Core Application






Like, Share, Support, Subscribe!!!

YouTube: https://bit.ly/2sY1aBb

Website: https://www.asmak9.com/

E-Store Bytezaar: https://www.bytezaar.com/

Facebook: https://www.facebook.com/AK.asmak9/

LinkedIn: https://www.linkedin.com/company/asmak9

Twitter: https://twitter.com/asmak/