private void dateTimePicker1_ValueChanged(object sender, EventArgs e)
{
}
现在代码在日期时间选择器中显示当前日期。 我如何在2017年3月31日展示,一旦到2018年,它将显示2018年3月31日,依此类推,等等,作为年度进展
答案 0 :(得分:1)
int currentYear = DateTime.Today.Year;
DateTime desiredDate = new DateTime(currentYear, 3, 31);
其他信息:显然Asker不了解班级DateTime
你问:
我如何在2017年3月31日展示,一旦到2018年,它将会展示 显示2018年3月31日,依此类推,作为年度进展
这是一个很难说的方式,你想要当年的31日游行(=今天的年份)
2017年11月15日,2017年是
当然你确实阅读过DateTime结构的文档,不是吗?