通过httpcache循环c#

前端之家收集整理的这篇文章主要介绍了通过httpcache循环c#前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在VB.NET上我可以做这样的事情来写出缓存中的所有密钥:
Dim oc As HttpContext = HttpContext.Current

For Each c As Object In oc.Cache
    oc.Response.Write(c.Key.ToString())
Next

尽管.Key没有出现在Intellisense中,但代码运行得很好.

我如何在c#中做同样的事情?

HttpContext oc = HttpContext.Current;
foreach (object c in oc.Cache) 
{
    oc.Response.Write(c.key.ToString());
}

它不喜欢.key.位.我在这里不知所措.有任何想法如何以这种方式访问​​密钥?

解决方法

下面代码snap工作正常:
HttpContext oc = HttpContext.Current;
foreach (var c in oc.Cache)        
{
   oc.Response.Write(((DictionaryEntry)c).Key.ToString());
}

谢谢你的时间

原文链接:https://www.f2er.com/csharp/98184.html

猜你在找的C#相关文章