tombok1/MeccsDogaObject/Program.cs

25 lines
536 B
C#
Raw Normal View History

2023-02-06 13:51:53 +00:00
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();
}
}
}