Possible Duplicate:
C#: Can I remove “{ get; set; }”?
My code has hundreds of lines that look like this:
public string abc { get; set; }
public string def { get; set; }
All have the { get; set; }
at the end of them.
What I am wondering is if there is a way that I can clean up my code and even remove the need for { get; set; }
while still making them public.
I know it's not a huge problem but I would like to try and clean up my code as much as possible.