This option controls whether primary constructors should be preferred over traditional constructors when they would suffice.
class Person(string name) { }
class Person { public Person(string name) { this.name = name } }