I want to find out the line of where the string exist in the text file and then change the line with another string
var location = "bla bla bla";
string fileContents = File.ReadAllText(location);
if (fileContents.Contains("LastSession\tcallsign"))
{
// here i want to save the line info of the "LastSession\tcallsing into a string variable then replace the string with another string
}