我希望在2天前获得日期时间.ie)如何从datetime.now减去2天
我想你只是在寻找:
DateTime.Now.AddDays(-2);
或尝试:
DateTime.Now.Subtract(TimeSpan.FromDays(2));