DarkRoomW.frmMain.RecallCacheFile C# (CSharp) Метод

RecallCacheFile() приватный Метод

private RecallCacheFile ( ) : string
Результат string
        private string RecallCacheFile()
        {
            string cache = "";
            try
            {
                string fName = Application.StartupPath + "\\CachedContent.dat";
                txtPage.LoadFile(fName);
                cache = txtPage.Text;

                txtPage.Modified = false;
            }
            catch (FileNotFoundException ex)
            {
                if (Eclectic.DebugMode)
                {
                    MessageBox.Show(ex.Message);
                }
            }
            return cache;
        }