我在 winform 中使用以下代码减去两个日期时间。这些是完整的日期时间,其中包括日期、月份和年份。我想知道如何仅用日和月减去两个日期时间。例如减去没有任何年份的 5/12 和 6/12。
DateTime date1 = new DateTime(byear, bmonth, bday, 0, 0, 0);
DateTime datenow = DateTime.Now;
TimeSpan timeSpan = datenow - date1;
请给我一些代码,以便我可以用它的日期和月份减去两个日期时间。
提前致谢