`
FileStream myStream = new FileStream(path, FileMode.Open); `My code wont display the infromation`
StreamReader reader = new StreamReader(myStream);
string line;
while ((line = reader.ReadLine()) != null)
{
Console.WriteLine(line);
}
reader.Close();
myStream.Close();
Im try to make it display the information added to the text file and display it