DarkRoomW.frmMain.CacheFile C# (CSharp) Method

CacheFile() private method

private CacheFile ( ) : bool
return bool
        private bool CacheFile()
        {
            if (Properties.Settings.Default.LocalCacheFile)
            {
                SaveFile(Application.StartupPath + "\\CachedContent.dat");
                return true;
            }
            return false;
        }