2005年3月22日

C#实现的根据年月日计算星期几的函数

摘要: string CaculateWeekDay(int y,int m, int d) CaculateWeekDay { string weekstr=""; DateTime theDate = new DateTime(y,m,d); weekstr=theDate.DayOfWeek; return weekstr; } 阅读全文

posted @ 2005-03-22 16:15 .Dove 阅读(389) 评论(0) 推荐(0) 编辑

导航