Index
Auto Detection Of Delimiters
EDIFileParser has a Delimiter property that can be set if these delimiters are known beforehand. It also has a property called AutoDetectDelimiters. By enabling this property EDIFileParser detects the special delimiter characters while parsing is being performed. The default is true.
Example
// Create an instance of the EDIFileParser object
EDIFileParser parser = new EDIFileParser(“edifile.txt”);
parser.AutoDetectDelimiters = true;