I am implementing a very basic thread in C#:
private Thread listenThread; public void startParser() { this.listenThread = new Thread(new ThreadStart(chec
Let your loop sleep. It's running around and around and getting tired. At the very least, let it take a break eventually.