System.Web.Caching.Cache和System.Web.HttpRuntime.Cache区别
请教:System.Web.Caching.Cache和System.Web.HttpRuntime.Cache的区别。并
public static object GetCache(string CacheKey)
{
System.Web.Caching.Cache objCache = HttpRuntime.Cache;
return objCache[CacheKey];
}
上面这段代码是什么意思? --------------------编程问答-------------------- 正运行的
当然有区别了. --------------------编程问答-------------------- HttpRuntime 有个静态属性 Cache,返回一个 System.Web.Caching.Cache 类型的对象。 --------------------编程问答-------------------- System.Web.HttpRuntime.Cache 是属性
System.Web.Caching.Cache 是类
传送门
补充:.NET技术 , ASP.NET