我正在用 c# 编写一个应用程序,该应用程序需要根据添加项目的月份等每两三个月执行一次代码。例如,如果月份是 2 月,它将表示为值为 2 的 int。因此,它需要在 april(4)、june(6) 等运行。我真的不知道该怎么做,任何帮助真的很棒
这是我到目前为止所拥有的
// month is febuary
string month = monthAsInt(date);
for(int w= month; month <= 12; w++)
{
w++;
//thats not going to work if month is greater than 0
if(?)
{
//execute
}
}