32 lines
650 B
C#
32 lines
650 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Balkezesek
|
|
{
|
|
class Eredmenyek
|
|
{
|
|
public string hazai;
|
|
public string idegen;
|
|
public int hpont;
|
|
public int ipont;
|
|
public string helyszin;
|
|
public string idopont;
|
|
|
|
public Eredmenyek(string sor)
|
|
{
|
|
|
|
string[] t = sor.Split(';');
|
|
hazai = t[0];
|
|
idegen = t[1];
|
|
hpont = Convert.ToInt32(t[2]);
|
|
ipont = Convert.ToInt32(t[3]);
|
|
helyszin = t[4];
|
|
idopont = t[5];
|
|
}
|
|
|
|
}
|
|
}
|