Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 .NET MVC3 应用程序开发一些模板,我唯一可以访问的是 cshtml 模板文件。我真的对.NET 一无所知,所以我只是想拼凑一些东西。在我的一个模板中,我需要输出上一年。
我知道我可以得到当前年份,@DateTime.Now.Year但我找不到任何关于如何得到上一年的信息。
@DateTime.Now.Year
谢谢您的帮助
@DateTime.Now.AddYears(-1).Year;
去年的今天:
DateTime lastYear = DateTime.Now.AddYears(-1);
要不就@DateTime.Now.AddYears(-1).year;
@DateTime.Now.AddYears(-1).year;