Il mio codice finora
StreamReader reading = File.OpenText("test.txt");
string str;
while ((str = reading.ReadLine())!=null)
{
if (str.Contains("some text"))
{
StreamWriter write = new StreamWriter("test.txt");
}
}
So come trovare il testo, ma non ho idea di come sostituire il testo nel file con il mio.