목차
Working of C# CSV Reader
Examples of C# CSV Reader
Example #2
Advantages
Conclusion

C# CSV 리더

Sep 03, 2024 pm 03:20 PM
c# c# tutorial

A simple C# class library which is lightweight and open source that can read the data in CSV format from text files and strings is called CSV Reader in C# whose latest version must be downloaded and included in the project we are creating as a compiled DLL or as a source and it builds itself in all the versions of Microsoft visual studio 2008 or CSVReader.cs and StringConverter.cs can be downloaded to include the CSV Reader directly in our source code which can be added to the C# project we are doing on Microsoft Visual Studio and CSV Reader class belongs to DataSreams.csv namespace.

The syntax of C# CSV Reader is as follows:

public sealed class CsvReader : ReaderBase
로그인 후 복사

Working of C# CSV Reader

  • Whenever there is a need to read the comma-separated values file through a C# program, we make use of CSV Reader.
  • CSV Reader belongs to DataStrems.csv namespace.
  • CSV Reader is a simple library that is lightweight and open source that can read the data in CSV format from text files and strings.
  • The latest version of CSV Reader can be downloaded from Microsoft visual studio 2008 and must be included in the project we are creating as a compiled DLL or as a source.
  • The other way to include the CVS Reader into the source code is to download the CSVReader.cs and StringConverter.cs and add to the project we are creating on Microsoft Visual Studio.

Examples of C# CSV Reader

Here are the following examples mention below

Example #1

Program to demonstrate CSV Reader in a program to read the contents of a CSV file

Code:

using System;
using System.Diagnostics;
using System.IO;
using Microsoft.VisualBasic.FileIO;
//a class called check is defined
class check
{
//an array of strings is defined to store the values from the csv file as an array
List<string[]> records = new List<string[]>();
//an instance of csv reader class is created by giving the path of the csv file
using (CsvReader reader = new CsvReader("C:\\Users\\admin\\Desktop\\imp.csv", Encoding.Default))
{
//the csv file is read until the last record is reached by making use of fields’ property
while (reader.ReadNextRecord())
//adding the records from the read csv file to the array
records.Add(reader.Fields);
}
//displaying the contents of the array
foreach (var array in records)
{
Console.WriteLine("{0}", array);
}
}
로그인 후 복사

Output:

C# CSV 리더

In the above program, a class called check is defined. Then an array of strings is defined to store the values from the csv file as an array. Then an instance of csv reader class is created by giving the path of the csv file. Then the records are read from the csv file until the last record is reached by making use of fields’ property and then the read records are added to the array by using the Add method. Then the contents of the array is displayed. The output is as shown above.

Note: Please save the input file in .csv format before providing the path of the file as input to the program.

Example #2

Program to demonstrate CSV Reader in a program to read the contents of a CSV file

Code:

using System;
using System.Diagnostics;
using System.IO;
using Microsoft.VisualBasic.FileIO;
//a class called check is defined
class check
{
//an array of integers is defined to store the values from the csv file as an array
List<int[]> records = new List<int[]>();
//an instance of csv reader class is created by giving the path of the csv file
using (CsvReader reader = new CsvReader("C:\\Users\\admin\\Desktop\\imp1.csv", Encoding.Default))
{
//the csv file is read until the last record is reached by making use of fields’ property
while (reader.ReadNextRecord())
//adding the records from the read csv file to the array
records.Add(reader.Fields);
}
//displaying the contents of the array
foreach (var array in records)
{
Console.WriteLine("{0}", array);
}
}
로그인 후 복사

Output:

C# CSV 리더

In the above program, a class called check is defined. Then an array of strings is defined to store the values from the csv file as an array. Then an instance of csv reader class is created by giving the path of the csv file. Then the records are read from the csv file until the last record is reached by making use of fields’ property and then the read records are added to the array by using the Add method. Then the contents of the array is displayed. The output is as shown above.

Note: Please save the input file in .csv format before providing the path of the file as input to the program.

Advantages

There are several advantages of using CSV Reader. They are:

  • Making use of CSV Reader in our program is the easiest way to read the files in CSV format.
  • The performance of the program while reading the file in CSV format by making use of CSV Reader in our program is really good.
  • CSV Reader used in our program follows the file format of a csv file completely making the reading task as easier as possible.
  • There is no necessity to make use of third party libraries to read a file in csv format if we are making use of CSV Reader in our program.

Conclusion

In this tutorial, we understand the concept of CSV Reader in C# through definition, syntax, and working of CSV Reader through programming examples and their outputs and the advantages of using CSV Reader in our program to read a file in CSV format.

위 내용은 C# CSV 리더의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

핫 AI 도구

Undresser.AI Undress

Undresser.AI Undress

사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover

AI Clothes Remover

사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool

Undress AI Tool

무료로 이미지를 벗다

Clothoff.io

Clothoff.io

AI 옷 제거제

Video Face Swap

Video Face Swap

완전히 무료인 AI 얼굴 교환 도구를 사용하여 모든 비디오의 얼굴을 쉽게 바꾸세요!

인기 기사

<gum> : Bubble Gum Simulator Infinity- 로얄 키를 얻고 사용하는 방법
4 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌
Nordhold : Fusion System, 설명
4 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌
Mandragora : 마녀 트리의 속삭임 - Grappling Hook 잠금 해제 방법
3 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌

뜨거운 도구

메모장++7.3.1

메모장++7.3.1

사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전

SublimeText3 중국어 버전

중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기

스튜디오 13.0.1 보내기

강력한 PHP 통합 개발 환경

드림위버 CS6

드림위버 CS6

시각적 웹 개발 도구

SublimeText3 Mac 버전

SublimeText3 Mac 버전

신 수준의 코드 편집 소프트웨어(SublimeText3)

C#을 사용한 Active Directory C#을 사용한 Active Directory Sep 03, 2024 pm 03:33 PM

C#을 사용한 Active Directory 가이드. 여기에서는 소개와 구문 및 예제와 함께 C#에서 Active Directory가 작동하는 방식에 대해 설명합니다.

C#의 난수 생성기 C#의 난수 생성기 Sep 03, 2024 pm 03:34 PM

C#의 난수 생성기 가이드입니다. 여기서는 난수 생성기의 작동 방식, 의사 난수 및 보안 숫자의 개념에 대해 설명합니다.

C# 데이터 그리드 보기 C# 데이터 그리드 보기 Sep 03, 2024 pm 03:32 PM

C# 데이터 그리드 뷰 가이드. 여기서는 SQL 데이터베이스 또는 Excel 파일에서 데이터 그리드 보기를 로드하고 내보내는 방법에 대한 예를 설명합니다.

C#의 팩토리얼 C#의 팩토리얼 Sep 03, 2024 pm 03:34 PM

C#의 팩토리얼 가이드입니다. 여기서는 다양한 예제 및 코드 구현과 함께 C#의 계승에 대한 소개를 논의합니다.

멀티 스레딩과 비동기 C#의 차이 멀티 스레딩과 비동기 C#의 차이 Apr 03, 2025 pm 02:57 PM

멀티 스레딩과 비동기식의 차이점은 멀티 스레딩이 동시에 여러 스레드를 실행하는 반면, 현재 스레드를 차단하지 않고 비동기식으로 작업을 수행한다는 것입니다. 멀티 스레딩은 컴퓨팅 집약적 인 작업에 사용되며 비동기식은 사용자 상호 작용에 사용됩니다. 멀티 스레딩의 장점은 컴퓨팅 성능을 향상시키는 것이지만 비동기의 장점은 UI 스레드를 차단하지 않는 것입니다. 멀티 스레딩 또는 비동기식을 선택하는 것은 작업의 특성에 따라 다릅니다. 계산 집약적 작업은 멀티 스레딩을 사용하고 외부 리소스와 상호 작용하고 UI 응답 성을 비동기식으로 유지 해야하는 작업을 사용합니다.

C#의 패턴 C#의 패턴 Sep 03, 2024 pm 03:33 PM

C#의 패턴 가이드. 여기에서는 예제 및 코드 구현과 함께 C#의 패턴 소개 및 상위 3가지 유형에 대해 설명합니다.

C#의 소수 C#의 소수 Sep 03, 2024 pm 03:35 PM

C#의 소수 가이드. 여기서는 코드 구현과 함께 C#의 소수에 대한 소개와 예를 논의합니다.

XML 형식을 변경하는 방법 XML 형식을 변경하는 방법 Apr 03, 2025 am 08:42 AM

XML 형식을 수정하는 방법에는 여러 가지가 있습니다. Notepad와 같은 텍스트 편집기로 수동으로 편집; XMLBeautifier와 같은 온라인 또는 데스크탑 XML 서식 도구와 자동 포맷; XSLT와 같은 XML 변환 도구를 사용하여 변환 규칙을 정의합니다. 또는 Python과 같은 프로그래밍 언어를 사용하여 구문 분석하고 작동합니다. 원본 파일을 수정하고 백업 할 때주의하십시오.

See all articles