[]
Exports the specified rows from the list to the specified file as delimited ASCII text.
public void ExportToDelimitedFile(string outPath, RowSelectorEnum selector)
Type | Name | Description |
---|---|---|
string | outPath | Specifies the file to which list rows are exported. |
RowSelectorEnum | selector | Specifies an optional value that specifies the rows to be exported. |
Exports the specified rows from the list to the specified file as delimited ASCII text.
public void ExportToDelimitedFile(string outPath, RowSelectorEnum selector, string delim)
Type | Name | Description |
---|---|---|
string | outPath | Specifies the file to which list rows are exported. |
RowSelectorEnum | selector | Specifies an optional value that specifies the rows to be exported. |
string | delim | Specifies an optional delimiter string used to separate fields. |
Exports the specified rows from the list to the specified file as delimited ASCII text.
public void ExportToDelimitedFile(string outPath, RowSelectorEnum selector, string delim, string prefix)
Type | Name | Description |
---|---|---|
string | outPath | Specifies the file to which list rows are exported. |
RowSelectorEnum | selector | Specifies an optional value that specifies the rows to be exported. |
string | delim | Specifies an optional delimiter string used to separate fields. |
string | prefix | Specifies an optional string used with suffix to surround each value. |
Exports the specified rows from the list to the specified file as delimited ASCII text.
public void ExportToDelimitedFile(string outPath, RowSelectorEnum selector, string delim, string prefix, string suffix)
Type | Name | Description |
---|---|---|
string | outPath | Specifies the file to which list rows are exported. |
RowSelectorEnum | selector | Specifies an optional value that specifies the rows to be exported. |
string | delim | Specifies an optional delimiter string used to separate fields. |
string | prefix | Specifies an optional string used with suffix to surround each value. |
string | suffix | Specifies an optional string used with prefix to surround each value. |
Exports the specified rows from the list to the specified file as delimited ASCII text.
public void ExportToDelimitedFile(string outPath, RowSelectorEnum selector, string delim, string prefix, string suffix, bool headers)
Type | Name | Description |
---|---|---|
string | outPath | Specifies the file to which list rows are exported. |
RowSelectorEnum | selector | Specifies an optional value that specifies the rows to be exported. |
string | delim | Specifies an optional delimiter string used to separate fields. |
string | prefix | Specifies an optional string used with suffix to surround each value. |
string | suffix | Specifies an optional string used with prefix to surround each value. |
bool | headers | Specifies whether the columns headers will be written to the file on the first line. |