刚刚接触C# 很多不懂 求大哥们帮助下
[C#] 纯文本查看 复制代码
DateTime dt2 = DateTime.Now;
string week2 = DateTime.Now.AddDays(Convert.ToDouble((0 - Convert.ToInt16(DateTime.Now.DayOfWeek)))).ToShortDateString();
string week3 = DateTime.Now.AddDays(Convert.ToDouble((6 - Convert.ToInt16(DateTime.Now.DayOfWeek)))).ToShortDateString();
for (int j = 0; j < 10; j++)
{
// string y = Convert.ToString(dt2.AddDays(j));
if (dt2.Equals(week2) || week3.Equals(week3))
{
}
else
{
}
// Console.WriteLine("output" + " , " + week2 + " , " + week3);
Console.WriteLine("output2" + " , " +y);
}
我就是想找未来10天的日期。 然后 遇到 一次的星期 6 日 就多加两天
如果 未来 10天的 日期 遇到 2次星期 6日 就多 加 4 天
我做到这部 找到了 星期6日 然后 怎么在多加 2天 4天
再此谢过 请教教
|