Static Public Member Functions | Static Public Attributes | List of all members
CsvUtilities Class Reference

Static utility class for CSV import and export related generic functionality. More...

Static Public Member Functions

static string AddQuotesToText (string text)
 Adds quotes to the given text. More...
 
static string TrimQuotes (string text)
 Method for trimming quotes in the beginning and end of the string. More...
 

Static Public Attributes

static readonly char DEFAULT_DELIMITER = ','
 The default delimiter, comma by default. More...
 
static readonly char QUOTE = '\"'
 The character used for quiting strings in CSV. More...
 
static readonly string SEPARATOR_HEADER = "sep="
 The separator header key for the CSV file. More...
 

Detailed Description

Static utility class for CSV import and export related generic functionality.

Member Function Documentation

static string AddQuotesToText ( string  text)
inlinestatic

Adds quotes to the given text.

Parameters
textThe text.
Returns
static string TrimQuotes ( string  text)
inlinestatic

Method for trimming quotes in the beginning and end of the string.

Parameters
textThe text.
Returns

Member Data Documentation

readonly char DEFAULT_DELIMITER = ','
static

The default delimiter, comma by default.

readonly char QUOTE = '\"'
static

The character used for quiting strings in CSV.

readonly string SEPARATOR_HEADER = "sep="
static

The separator header key for the CSV file.