Start date is used in multiple places and it defaults to some value.
Can I declare this as a or constant or static property.
DateTime dtStart = DateTime.Now.AddYears(-2).AddMonths(-1).ToShortDateString();
Edit
string dtStart = DateTime.Now.AddYears(-2).AddMonths(-1).ToShortDateString();
I missed to mention that I want to know its behaviour in multi-threaded environment and changed the datatype to string.