Вот пример кода для воспроизведения:
Код: Выделить всё
Console.WriteLine("Results: ");
const int count = 15;
for (int i = 0; i < count; i++)
{
if (i == (count - 1))
Console.Write(i);
else
Console.Write(i + ", ");
}
Отчет об ошибке: https://developercommunity2.visualstudi ... re/1241476
Подробнее здесь: https://stackoverflow.com/questions/647 ... ms-project
Мобильная версия