This option controls whether object creation should be simplified by omitting the type when it can be inferred from context.
Dim c As Customer = New With {.Name = "A"}
Dim c As Customer = New Customer With {.Name = "A"}