public static Token ReadQuotedField(string line, int startIndex)
{
var token = new Token(line, 0, line.Length - startIndex);
if(token.Value.Contains("\"") || token.Value.Contains("\'")){
return new Token(token.Value, 0, token.Length-5);
}
return new Token(line, startIndex, line.Length - startIndex);
}