This commit is contained in:
István Priskin 2024-10-10 12:04:43 +02:00
parent e47bcae98d
commit e82f1131aa
3 changed files with 21 additions and 0 deletions

View File

@ -43,6 +43,7 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Listaelem.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>

19
LancoltLista/Listaelem.cs Normal file
View File

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LancoltLista
{
internal class Listaelem
{
public double Adat;
public Listaelem Kovetkezo;
public Listaelem(double Adat)
{
this.Adat = Adat;
}
}
}

View File

@ -10,6 +10,7 @@ namespace LancoltLista
{
static void Main(string[] args)
{
Listaelem sajatlista = new Listaelem(3.1415);
}
}
}