Hello everyone, I wanted to know how I can recover files txt certain lines. I’m doing a library (office) where entering a string as a parameter I must return all that is written on the same line. How can I do this?
public void loadInfo(T info)
{
using (StreamReader sr = File.OpenText(path))
{
if()
}
}