StringParserParseLine Method
            Parses a line based on a collection of quote and delimiter characters,
            
Namespace: Gemstone.IO.ParsingAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.150 -- Release Build+64e3b411e1abfbd2d4d8a81e850c3909a0ce8731
public static string[]? ParseLine(
	string inString,
	char[]? quoteChars,
	char[]? delimiters,
	int startIndex = 0,
	bool removeResultQuotes = true
)
Public Shared Function ParseLine ( 
	inString As String,
	quoteChars As Char(),
	delimiters As Char(),
	Optional startIndex As Integer = 0,
	Optional removeResultQuotes As Boolean = true
) As String()
public:
static array<String^>^ ParseLine(
	String^ inString, 
	array<wchar_t>^ quoteChars, 
	array<wchar_t>^ delimiters, 
	int startIndex = 0, 
	bool removeResultQuotes = true
)
Gemstone.IO.Parsing.StringParser.ParseLine = function(inString, quoteChars, delimiters, startIndex, removeResultQuotes);
- inString  String
 - The string to parse
 - quoteChars  Char
 - 
                          An array of characters to be used as the framing within fields or the "quote" characters.  Quotes must matched. 
                          Set to null to disable (split line at delimiter regardless of quotes).
 - delimiters  Char
 - An array of characters to be used as delimiter characters.  These characters have equal weight in breaking up the line.
 - startIndex  Int32  (Optional)
 - The index in the line from which to start parsing.
 - removeResultQuotes  Boolean  (Optional)
 - Set to TRUE to unwrap quotes in returned array vis-a-vis Excel.
 
StringAn array of the parsed strings
 The string.split method is about 12 times faster.