How can I create F# dll and call it in C#? Thank you
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
To create a DLL in F#, you should set the output type to class library in project properties. Use Add Reference dialog as mentioned before to add the reference in your C# project.
回答2:
There's no real trick; like
http://lorgonblog.spaces.live.com/blog/cns!701679AD17B6D310!307.entry
only the other way around. One thing to note is that if you don't specify a namespace in the F# code, all your top-level definitions by default end up in a module with the name of the file, so if you have Program.fs then you may reference Program.Whatever from C#.
回答3:
If you are using the latest version, all you should need to do is set the project type to 'F# Library' when you create the project.