Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

The analog of this bit of code, but via configuration:

using MyNamespace = System.Web.Mvc;

edit: my intention comes from looking at projects such as silversprite which aims to provide an identical API for XNA for silverlight. This allows you to write an XNA game once, and then deploy it onto the web using silverlight. The only problem is that all of the silversprite version of the APIs are in a different namespace, so to use it you need to use an ifdef around the using statements. It would have been awesome if one could simply alias the silversprite namespace so that your code wouldn't have to change between platforms.

like image 260
Joel Martinez Avatar asked Feb 04 '23 10:02

Joel Martinez


1 Answers

No. Namespaces are required at compile time. It's only scenarios where the compilation is done "late" (as in ASP.NET) where this makes any sense.

What would it even mean to add a namespace at execution time, if the code has already been compiled?

Are you really just after the option to avoid writing a bunch of using directives at the top of each file? If so, and if C# supported it, that would be in the project properties (which are about compilation, not execution). However, C# doesn't support that - the only imported namespaces are the ones specified by using directives in the current file.

I think VB has the idea of "default namespaces" but C# definitely doesn't. Personally I think that's a good thing. (You might also want to look at this question. I don't know whether it's effectively a duplicate or not, as your intention isn't clear at the moment.)

like image 107
Jon Skeet Avatar answered Feb 07 '23 18:02

Jon Skeet