I have a web application with Asp.Net MVC and I have a resource in my called \[code\]Global\[/code\]. It works fine, but I would like to create an extension to my Views in asp.net mvc to access it easily without use \[code\]using namespace\[/code\]. I can do it getting by the property name by string but I would not like to lose the intelissense. Is there any way to return a static class? I've tried something like this:\[code\]public static Resources.Global Resource(this WebViewPage view){ return Resources.Global; // but it does not compile}\[/code\]I would like to use something like this in my view:\[code\]@Resource.Message\[/code\]How could I extend this feature?Thank you