23
votes

What's the equivalent F# declaration to this C# declaration:

using NR = ICSharpCode.NRefactory;

2

2 Answers

44
votes

abbreviations in F# can be applied to modules:

module ES = Microsoft.FSharp.Quotations.ExprShape

and types

type Thread = System.Threading.Thread

unfortunatly just namespaces cannot be abbreviated

7
votes

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.