using System; using System.Collections.Generic; using System.Text; namespace LottoProgram { class LottoSzelveny { public int tipus; public int[] szamok; public LottoSzelveny(int t) { tipus = t; szamok = new int[tipus]; } } }