How do you give a C# auto-property an initial value?
I either use the constructor, or revert to the old syntax.
Using the Constructor:
public Class ClassName{ public int PropName{get;set;} public ClassName{ PropName=0; //Default Value } }