What's the equivalent F# declaration to this C# declaration:
using NR = ICSharpCod开发者_Go百科e.NRefactory;
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
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.
精彩评论