public void LoadFromDisk()
{
// Ensure that the file gets read in 8-bit ANSI
using (BinaryReader reader = new BinaryReader(File.Open(_fileName, FileMode.Open, FileAccess.Read)))
{
byte[] bytes = reader.ReadBytes((int)reader.BaseStream.Length);
_text = Encoding.Default.GetString(bytes);
}
_modified = false;
}