Perficient Interview Question

Tell me about automatic properties in C#

Interview Answer

Anonymous

Feb 18, 2012

public string Name { get; set; } It allows the automatic creation of a public property (in this case the Name property) without the tedious filling out of the getter and the setter.