Open xavierzwirtz opened 10 years ago
Can you give an example of this feature ?
In VB.Net you can specify an Import
decleration in the vbproj file. Instead of having to import System.Linq
in every vb file, it is now imported by default. Import
would be using
in Nemerle parlance.
Interesting feature, but actually I don't see how this is useful. You can implement it if you really need.
In Visual Basic you can specify a project level
Import
, which prevents you from having to import the same thing in all code files. It would be nice if Nemerle supported this.