Kezdés
This commit is contained in:
parent
e47bcae98d
commit
e82f1131aa
|
@ -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
19
LancoltLista/Listaelem.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -10,6 +10,7 @@ namespace LancoltLista
|
|||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Listaelem sajatlista = new Listaelem(3.1415);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user