Say I have an auto-implemented property
public int SheetNum { get; set; }
Is there anyway to set the default value of SheetNum
to 1, so it would be like
private int sheetNum = 1;
public int SheetNum
{
set { this.sheetNum = value; }
get { return this.sheetNum; }
}