Is it possible to create a class instance on Application_Start that can be used in all controllers?
I would like to be able to create for example:
var globalHelper = new LoadsStuff();
and then in my Action methods:
globalHelper.GetInfoFor("key");
My Helper class loads a fairly big XML file to memory and I would like to do that only once.