if (HttpRuntime.Cache[cacheKey] == null)
                HttpRuntime.Cache[cacheKey] = new Hashtable();            userLookupTable = (Hashtable) HttpRuntime.Cache[cacheKey]; 以上是aspnetforums的一句话。让我不解的是:既然第三句已经强制转换成hashtable了,为何第二句还要=new Hashtable()。