Possible to alias .NET namespaces in app.config?
问题 ASP.NET has a feature that allows you to declare implicitly used namespaces in the web.config. <configuration> <system.web> <pages> <namespaces> <add namespace="System.Web.Mvc"/> </namespaces> </pages> </system.web> </configuration> I'm curious to know if configuration for other .net environments (like winforms, console apps, and in particular, silverlight applications) have this ability. If so , then the follow up question is whether we are able to alias a namespace in said configuration.