cacheenum 相关的软件列表

首页

.net清空所有Cache的实现代码

2020-02-16 标签:n,et,清空,cache,实现,代码,如下,cacheenum,movenext,remove,key,tostring,response,write,缓存,成功

实现代码如下:IDictionaryEnumerator CacheEnum = Cache.GetEnumerator(); while (CacheEnum.MoveNext()) { Cache.Remove(CacheEnum.Key.ToString()); } Response.Writ