摘要:private string getAge(string bornDate) { DateTime b = DateTime.Parse(bornDate); int a2 = DateTime.Now.Year; int b2 = b.Year; int a3 = DateTime.Now.Month; int b3 = b.Month; int a4 = DateTime.Now.Day; i...
阅读全文
posted @ 2008-08-22 10:04