Beispiel #1
0
        static public void QuestionListClear()
        {
            string key = QUESTIONLIST;

            if (CHCache.Contains(key))
            {
                CHCache.Remove(key);
            }
        }
Beispiel #2
0
        static public void GroupClear(long groupid)
        {
            string key = GROUP;

            if (CHCache.Contains(key))
            {
                CHCache.Remove(key);
            }
        }
Beispiel #3
0
 public static void Clear(string fn)
 {
     CHCache.Remove(fn);
 }