Reputation: 1359
What's the equivalent F# declaration to this C# declaration:
using NR = ICSharpCode.NRefactory;
Upvotes: 28
Views: 5715
Reputation: 12174
Equivalent F# declaration would be:
type NR = ICSharpCode.NRefactory
In F# it's called a type abreviation: http://msdn.microsoft.com/en-us/library/dd233246.aspx
But ICSharpCode.NRefactory
has to be here a type, as desco said just namespaces cannot be abbreviated.
Upvotes: 7