There is nothing equivalent, but C # 3 got the opportunity to set properties when building:
var person = new Person { Name = "Jon", Age = 34 };
And collections:
var people = new List<Person> { new Person { Name = "Jon" }, new Person { Name = "Holly"} };
This is definitely not a replacement for all uses With , but it is worth knowing for some of them.
Jon skeet
source share