you can enumerate through lines until you find the unique string and set the next line as text box value and break the operation
bool found = false;
foreach (var line in File.ReadLines("filepath"))
{
if (found)
{
textBox1.Text = line;
break;
}
found = line.Contains("unique string");
}
textBox1.Text = "not found";
File.ReadLines(file)
read the lines in specified file one by one.
foreach(var item in container)
will get items from its container one by one and you can do your stuff with item.
y.Contains(x)
checks whether y contains x or not.