Table of Contents

Class CsvHelper

Namespace
Acuit.Pinpoint.Tables
Assembly
Acuit.Pinpoint.Tables.dll

Helpers for working with the CSV (comma delimited) format.

public static class CsvHelper
Inheritance
CsvHelper
Inherited Members

Methods

ParseRow(string)

Parses a row of CSV data.

public static string[] ParseRow(string text)

Parameters

text string

The CSV row text to parse.

Returns

string[]

The parsed CSV fields, or null if there were no fields because text was empty.

Remarks

White space is not trimmed from the fields.

Exceptions

ArgumentNullException

The text parameter is null.