EDIT: This ((char)tr.Read() == '&') which is right above it works fine. And I have initialized the char array as:
char[] charTemp = new char[50];
while (charTemp[i] != '%')
{
charTemp[i] = (char)tr.Read();
i++;
}
Thanks
Aaron
EDIT: This ((char)tr.Read() == '&') which is right above it works fine. And I have initialized the char array as:
char[] charTemp = new char[50];
while (charTemp[i] != '%')
{
charTemp[i] = (char)tr.Read();
i++;
}
Thanks
Aaron
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
AaronPosted Dec 19, 2007, 6:48 PM