C#WinForm 缓存

代码
   
     
System.Web.Caching.Cache c = System.Web.HttpRuntime.Cache;
if (c != null )
...{
c.Insert(
" 1 " , " 123141432432 " );
object o = c.Get( " 1 " );
Console.WriteLine(o);
}
时候项目里需要用窗体应用程序做一些小工具,碰到了需要缓存的问题。以上是解决办法,要追加System.Web的引用。尽管在Web命名空间里,非Web程序也可以使用。

 

你可能感兴趣的:(WinForm)