如何查找输入中的日期是否在特定日期范围内(例如,在过去 7 天内,这意味着我会说 -7)。如果是在过去 7 天内,做某事,否则做其他事情。
我目前可以做到这一点,但我不知道如何进一步改变它以满足我想要的。
string a = "-1"; // These are values that are configurable based on which date is checked. Yesterday means, -1 for example.
string b = "-15"; // -15 means within last 15 days.
DateTime d = input;
DateTime e = d.AddDays(int.Parse(a));
if (d is between datetime.now and e)
{
//do something
}
else do something
一只斗牛犬
呼如林
慕桂英4014372
相关分类