How to read from a String line by line
using System.IO;

...

StringReader reader = new StringReader(inOutput);
String line;
while ((line = reader.ReadLine()) != null)
{
    ...
}
page_revision: 1, last_edited: 1213263598|%e %b %Y, %H:%M %Z (%O ago)
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License