I need to build up a List and cache the list and be able to append to it. I also need to be able to blow it away easily and recreate it. What is
List
This Tutorial is what I found to be helpful
Here is a sample
List list = new List(); Cache["ObjectList"] = list; // add list = ( List) Cache["ObjectList"]; // retrieve Cache.Remove("ObjectList"); // remove