There are some common compiler tricks in F# and C#, for example object initialization.
In C# 3.0 we have Object Initializers which allow for an object to be instantiated via an explicit constructor call and properties to be set in one statement.
Form f = new Form1() { Text = “Hello” }; Application.Run(f);
And in F# we [...]