ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Common Board

How read unknown count of lines in C#?
Posted by Goncharov Evgeny 14 Oct 2010 00:06
I do this

string temp;
while (temp != "")
{
    // do something
    temp = Console.ReadLine();
}

I got the "Crash" if i send it.
Is this problem can be solved?