Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as C# by greger ( 6 years ago )
if (start != -1 && (!SelectedDays[i] || i == SelectedDays.Length - 1))
{
if (cnt + 1 < SelectedDays.Length)
dayString += $"{(dayString.Length > 0 ? "," : "")}{start}{(cnt > 0 ? $"-{start + cnt}" : "")}";
else
dayString = "*";
start = -1;
cnt = 0;
}
Revise this Paste