FileStream myFileStream = File.Open("C:\\file.txt", FileMode.Open);
This line declares and initializes a variable myFileStream, but what is exactly in this variable? Does it contain all the bytes from "file.txt"? Or does it contain info about an established connection with the file?