2. Visual Studio 11 Developer Preview//build/ カンファレンス9.13-9.16, 2011Anaheim, California
3. Preview release of F# 3.0as part of the VS 11Microsoft® Visual Studio® 11 Developer Preview (Web Installer)http://www.microsoft.com/download/en/details.aspx?id=27543Microsoft® Visual Studio® 11 Developer Preview (ISO)http://www.microsoft.com/download/en/details.aspx?id=27538今朝、一般公開されました!
4. Preview release of F# 3.0as part of the VS 11Microsoft® Visual Studio® 11 Developer Preview (Web Installer)http://www.microsoft.com/download/en/details.aspx?id=27543Microsoft® Visual Studio® 11 Developer Preview (ISO)http://www.microsoft.com/download/en/details.aspx?id=27538今朝、一般公開されました!
5. Don SymeのセッションF# 3.0: data, services, Web, cloud, at your fingertipsDate: September 16, 2011 from 10:30AM to 11:30AMSpeakers: Don Symehttp://channel9.msdn.com/Events/BUILD/BUILD2011/SAC-904T“Modern programming thrives on rich spaces of data, information and services. With F# 3.0 and Visual Studio 11, you now have a tool that massively simplifies information-rich analytical programming. F# 3.0 provides integrated support for F# Information Rich Programming, a new and powerful way of integrating data and services into your programming experience. In this talk, we will describe the new features of F# 3.0, including the first released version of F# Type Providers and F# Queries, with apps to leverage technologies such as SharePoint, Azure Data Market, OData, Entity Framework and SQL Server.”
6. Don SymeのセッションF# 3.0: data, services, Web, cloud, at your fingertipsDate: September 16, 2011 from 10:30AM to 11:30AMSpeakers: Don Symehttp://channel9.msdn.com/Events/BUILD/BUILD2011/SAC-904T“Modern programming thrives on rich spaces of data, information and services. With F# 3.0 and Visual Studio 11, you now have a tool that massively simplifies information-rich analytical programming. F# 3.0 provides integrated support for F# Information Rich Programming, a new and powerful way of integrating data and services into your programming experience. In this talk, we will describe the new features of F# 3.0, including the first released version of F# Type Providers and F# Queries, with apps to leverage technologies such as SharePoint, Azure Data Market, OData, Entity Framework and SQL Server.”
18. 自動実装プロパティ(Automatically implemented properties)type MyClass() =// 可変な変数をラップするだけのプロパティlet mutable prop = "" member this.Prop with get() = prop and set(v) = prop <- v// 自動実装プロパティ member val AutoProp = "" with get, set