开发者

How to use namespace or type alias/abbreviation?

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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜