So many examples of using the memory cache in .NET (including the official docs) instantiate it with:
private readonly ObjectCache memoryCache = MemoryCache.Default;
Is there any reason to prefer this over:
private readonly MemoryCache memoryCache = MemoryCache.Default;