标签: c# datetime
答案 0 :(得分:23)
如何使用AddYears:
AddYears
DateTime then = DateTime.Today.AddYears(-25);
答案 1 :(得分:7)
这应该可以解决问题
DateTime.Now.AddYears(-25)