C# Class Microsoft.Research.DataOnboarding.Utilities.CsvHelper

Class containing methods used to Parse CSV files.
Exibir arquivo Open project: CDLUC3/dataup2

Public Methods

Method Description
Escape ( string value ) : string

Method to escape the value from the given value

ReadCsvValues ( string input ) : string[]

Method to spilt the comma separated value and return string of values

Unescape ( string value ) : string

Method to un escape the string for the given value

Method Details

Escape() public static method

Method to escape the value from the given value
public static Escape ( string value ) : string
value string value input
return string

ReadCsvValues() public static method

Method to spilt the comma separated value and return string of values
public static ReadCsvValues ( string input ) : string[]
input string input value
return string[]

Unescape() public static method

Method to un escape the string for the given value
public static Unescape ( string value ) : string
value string value input
return string