//Taken from Richard's class
foreach (char c in charsRead)
{
if (c == quote && !quotestart)
{
quotestart = true;
}
else
{
if (c == quote) { quoteend = true; }
if (c != quote && quotestart)
{ quotestr += c; }
else
{
if (quoteend)
{
}
}
count++;
}
}