예제 #1
0
        private string Get(string key)
        {
            string iKey = CacheAccess.GetFromCache(key) as string;

            if (iKey == "" || iKey == null)
            {
                iKey = configDialog.GetDialogSingle(key);
                CacheAccess.SaveToCache(key, iKey, GetDialogConfigCacheDependency());
            }
            return(iKey);
        }