Is there a short way to create the getter and setter in c#?
public string fname {get; set;}
Is there short hand to generate {get; se
{get; se
The shortcut is the trigger "prop":
propintId
and you end up with:
public int Id { get; set; }