In the Build 2011 keynote and demos, they were always talking about C++, C#, Visual Basic and JavaScript. Can't I build Metro style Apps with F#? Or is it safe to say that if it works with C#, then it works with F# as well?
Yes, that's how it is supposed to work. In addition to javascript and C/C++, any CLS compliant language that runs on top of the CLR will have access to the WinRT API. Unfortunately in the VS 2011 Express edition you don't get tooling support but I guess this will be added progressively or to other editions:
|
|||||
|
|
Don talks about this a little around 7:40 into his talk. |
|||
|
|
|
I had the same question and created a blog post: Create a Metro App in F# (NOT) There are a few issues:
|
||||
|
|
|
Using Visual Studio 11 Developer Preview (Full, not Express), I was able to reference and run F# code from a C# Metro style application with the following caveats:
By following these steps it is possible to run F# code from a C# Metro style application, but it is nearly impossible to write any useful code in F# without references to the core language libraries. Let's hope they update the libraries to be WinRT compatible soon. |
|||
|
|
|
The question has been answered here: Windows 8 and F# Although you cannot create and design Metro apps directly in F#, you can still create so called Portable library in F# with all Models and ViewModels and use it in another Metro projects. It's not ideal, but it works. |
|||
|
|
|
I ported my stock chart library for .NET3.5-4.0 to Portable library,it works quite well on Metro with C# Metro application and some my Metro UI bridge. I'm convinced that I can use F# to make Metro application in many parts. |
||||
|
|
