What is the difference between the Cache.Add() and Cache.Insert() methods?
In which situations should I use each one?
What is the difference between the Cache.Add() and Cache.Insert() methods?
In which situations should I use each one?
Cache.Add() also returns a cached object from Cache after it was added:
string cachedItem = Cache.Add("cachedItem", ....);