是不是要这样的:
----------------------------------------------
string d1 = "3-27";//本次交钱日期
DateTime d2 = new DateTime(2007,3,30); //上年交钱日期
DateTime dd = DateTime.Parse("2008"+d1);//这里的年2008可以随便写几,反正一会儿不比较它
if(d2.Month<dd.Month || d2.Month==dd.Month && d2.Day<dd.Day){
//迟交了,罚钱
}