Ainda fiquei com muita dificuldade sobre o for. Não entendi o porque de esse código não funcionar, gostaria de entender o erro e uma solução. O break está me confundindo muito
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Atv_3
{
    class Program
    {
        static void Main(string[] args)
        {
            int fatorial = 1;
            for(int numero = 1; numero <= 10; numero++)
            {
                fatorial *= numero;
                Console.WriteLine("Fatorial de " + numero + "=" + fatorial);
            }
            for (int teste = 0; teste != 1000 ; teste++)
            {
                Console.Write(teste + ", ");
                if (teste % 2 == 0)
                {
                    break;
                }
            }
            Console.ReadLine();
        }
    }
}
 
            