您好想知道如何讓f#編譯器自動自動打開命名空間。自動在F#中打開命名空間
我
namespace XXX
I have to add something here do(AutoOpen("XXX.YYY")) or something like that to make the XXX.YYY module to be opened when referencing the library from external projects.
[<AutoOpen>]
module YYY =
....
感謝
爲什麼你需要這樣做?自動打開的模塊不適合你嗎? – pad 2012-03-03 14:50:39
不,我希望儘快從外部項目引用庫到XXX.YYY的路徑會自動打開,我可以訪問模塊XXX.YYY中的函數我知道它看起來像我的代碼snippet但我不記得確切 – fabco63 2012-03-03 16:59:04