static void Main(string[] args)
{
for (int i = 0; i < 2; i++)
{
ObjectCache cache = MemoryCache.Default;
CacheItem fileContents = cache.GetCacheItem("filecontents");
if (fileContents == null)
{
CacheItemPolicy policy = new CacheItemPolicy();
List<string> filePaths = new List<string>();
string cachedFilePath = @"C:\Users\amitpat\Documents\cacheText.txt";
filePaths.Add(cachedFilePath);
policy.ChangeMonitors.Add(new HostFileChangeMonitor(filePaths));
string fileData = File.ReadAllText(cachedFilePath);
fileContents = new CacheItem("filecontents", fileData);
cache.Set(fileContents, policy);
}
Console.WriteLine(fileContents.Value as string);
}
Console.Read();
}
When you run your application you will see that for the second time it will not go into the IF block.
Happy Coding