[SOLVED]: I copied the file and ran the hasher on that copy.
I need my app to find the EXE\'s current MD5. I can get the MD5 of any file. However, n
Change: FileStream stream = File.Create(path, (int)fi.Length, FileOptions.Asynchronous); to FileStream stream = File.Open(path, FileMode.Open);
FileStream stream = File.Create(path, (int)fi.Length, FileOptions.Asynchronous);
FileStream stream = File.Open(path, FileMode.Open);