tombok1/MeccsDogaObject/Program.cs
2023-02-06 14:51:53 +01:00

25 lines
536 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MeccsDogaObject
{
class Program
{
static void Main(string[] args)
{
//A Meccs objektumok használata
Meccs m1 = new Meccs();
m1.fordulo = 15;
m1.hazaigol = 2;
m1.vendeggol = 1;
m1.hazaicsapat = "gszisc";
m1.vendegcsapat = "koosfc";
Meccs m2 = new Meccs();
}
}
}