i am searching in a while loop for a particular character to check whether it reached the end of file.
Which character which i can search for ??
Eg:
Indexof('/n') end of line
Indexof(' ') end of word
???? ---------- end of file??
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The end of a Stream is reached when a Stream.Read returns zero.
An example from MSDN, FileStream:
or,