diff --git a/.vs/c-sharp/v17/.suo b/.vs/c-sharp/v17/.suo
index 043d7c2..171458a 100644
Binary files a/.vs/c-sharp/v17/.suo and b/.vs/c-sharp/v17/.suo differ
diff --git a/Elagazas/App.config b/Elagazas/App.config
new file mode 100644
index 0000000..56efbc7
--- /dev/null
+++ b/Elagazas/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Elagazas/Elagazas.csproj b/Elagazas/Elagazas.csproj
new file mode 100644
index 0000000..5534441
--- /dev/null
+++ b/Elagazas/Elagazas.csproj
@@ -0,0 +1,53 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {2A6B1EE7-8A7E-4967-AC87-4DA2A455FCFB}
+ Exe
+ Elagazas
+ Elagazas
+ v4.7.2
+ 512
+ true
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Elagazas/Program.cs b/Elagazas/Program.cs
new file mode 100644
index 0000000..924cfa4
--- /dev/null
+++ b/Elagazas/Program.cs
@@ -0,0 +1,30 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Elagazas {
+ internal class Program {
+
+ public static void parosok(List lista) {
+ foreach(int i in lista) {
+ if(i % 2 == 0) {
+ Console.WriteLine(i);
+ }
+ }
+ }
+
+ static void Main(string[] args) {
+ List szamok = new List();
+ Random random = new Random();
+
+ for (int i = 0; i < random.Next(30, 200); i++) {
+ szamok.Add(random.Next(10, 100));
+ }
+
+ parosok(szamok);
+ Console.ReadKey();
+ }
+ }
+}
diff --git a/Elagazas/Properties/AssemblyInfo.cs b/Elagazas/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..4069efd
--- /dev/null
+++ b/Elagazas/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("Elagazas")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Elagazas")]
+[assembly: AssemblyCopyright("Copyright © 2022")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("2a6b1ee7-8a7e-4967-ac87-4da2a455fcfb")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Elagazas/bin/Debug/Elagazas.exe b/Elagazas/bin/Debug/Elagazas.exe
new file mode 100644
index 0000000..8ab0490
Binary files /dev/null and b/Elagazas/bin/Debug/Elagazas.exe differ
diff --git a/Elagazas/bin/Debug/Elagazas.exe.config b/Elagazas/bin/Debug/Elagazas.exe.config
new file mode 100644
index 0000000..56efbc7
--- /dev/null
+++ b/Elagazas/bin/Debug/Elagazas.exe.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Elagazas/bin/Debug/Elagazas.pdb b/Elagazas/bin/Debug/Elagazas.pdb
new file mode 100644
index 0000000..0e16b4c
Binary files /dev/null and b/Elagazas/bin/Debug/Elagazas.pdb differ
diff --git a/Elagazas/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/Elagazas/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs
new file mode 100644
index 0000000..3871b18
--- /dev/null
+++ b/Elagazas/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
diff --git a/Elagazas/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Elagazas/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
new file mode 100644
index 0000000..bc01851
Binary files /dev/null and b/Elagazas/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/Elagazas/obj/Debug/Elagazas.csproj.AssemblyReference.cache b/Elagazas/obj/Debug/Elagazas.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..126ed02
Binary files /dev/null and b/Elagazas/obj/Debug/Elagazas.csproj.AssemblyReference.cache differ
diff --git a/Elagazas/obj/Debug/Elagazas.csproj.CoreCompileInputs.cache b/Elagazas/obj/Debug/Elagazas.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..ee191d7
--- /dev/null
+++ b/Elagazas/obj/Debug/Elagazas.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+7f4b213b428f4c013f19137338418ee1f5525793
diff --git a/Elagazas/obj/Debug/Elagazas.csproj.FileListAbsolute.txt b/Elagazas/obj/Debug/Elagazas.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..5c4e3cf
--- /dev/null
+++ b/Elagazas/obj/Debug/Elagazas.csproj.FileListAbsolute.txt
@@ -0,0 +1,8 @@
+C:\dev\c#\c-sharp\Elagazas\bin\Debug\Elagazas.exe.config
+C:\dev\c#\c-sharp\Elagazas\bin\Debug\Elagazas.exe
+C:\dev\c#\c-sharp\Elagazas\bin\Debug\Elagazas.pdb
+C:\dev\c#\c-sharp\Elagazas\obj\Debug\Elagazas.csproj.AssemblyReference.cache
+C:\dev\c#\c-sharp\Elagazas\obj\Debug\Elagazas.csproj.SuggestedBindingRedirects.cache
+C:\dev\c#\c-sharp\Elagazas\obj\Debug\Elagazas.csproj.CoreCompileInputs.cache
+C:\dev\c#\c-sharp\Elagazas\obj\Debug\Elagazas.exe
+C:\dev\c#\c-sharp\Elagazas\obj\Debug\Elagazas.pdb
diff --git a/Elagazas/obj/Debug/Elagazas.csproj.SuggestedBindingRedirects.cache b/Elagazas/obj/Debug/Elagazas.csproj.SuggestedBindingRedirects.cache
new file mode 100644
index 0000000..e69de29
diff --git a/Elagazas/obj/Debug/Elagazas.exe b/Elagazas/obj/Debug/Elagazas.exe
new file mode 100644
index 0000000..8ab0490
Binary files /dev/null and b/Elagazas/obj/Debug/Elagazas.exe differ
diff --git a/Elagazas/obj/Debug/Elagazas.pdb b/Elagazas/obj/Debug/Elagazas.pdb
new file mode 100644
index 0000000..0e16b4c
Binary files /dev/null and b/Elagazas/obj/Debug/Elagazas.pdb differ
diff --git a/ForAndForEach/App.config b/ForAndForEach/App.config
new file mode 100644
index 0000000..56efbc7
--- /dev/null
+++ b/ForAndForEach/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ForAndForEach/ForAndForEach.csproj b/ForAndForEach/ForAndForEach.csproj
new file mode 100644
index 0000000..541c930
--- /dev/null
+++ b/ForAndForEach/ForAndForEach.csproj
@@ -0,0 +1,53 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {27F3C28C-7F88-42AC-9B27-5D69E35B6803}
+ Exe
+ ForAndForEach
+ ForAndForEach
+ v4.7.2
+ 512
+ true
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ForAndForEach/Program.cs b/ForAndForEach/Program.cs
new file mode 100644
index 0000000..7953228
--- /dev/null
+++ b/ForAndForEach/Program.cs
@@ -0,0 +1,29 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ForAndForEach {
+ internal class Program {
+ static void Main(string[] args) {
+ List list = new List();
+ Random random = new Random();
+
+ for (int i = 0; i < 10; i++) {
+ list.Add(random.Next(10, 100));
+ }
+
+ for (int i = 0; i < list.Count; i++) {
+ Console.WriteLine(list[i]);
+ }
+ Console.WriteLine();
+
+ foreach(int i in list) {
+ Console.WriteLine(i);
+ }
+
+ Console.ReadKey();
+ }
+ }
+}
diff --git a/ForAndForEach/Properties/AssemblyInfo.cs b/ForAndForEach/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..ceaf4be
--- /dev/null
+++ b/ForAndForEach/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("ForAndForEach")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("ForAndForEach")]
+[assembly: AssemblyCopyright("Copyright © 2022")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("27f3c28c-7f88-42ac-9b27-5d69e35b6803")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/ForAndForEach/bin/Debug/ForAndForEach.exe b/ForAndForEach/bin/Debug/ForAndForEach.exe
new file mode 100644
index 0000000..34a398d
Binary files /dev/null and b/ForAndForEach/bin/Debug/ForAndForEach.exe differ
diff --git a/ForAndForEach/bin/Debug/ForAndForEach.exe.config b/ForAndForEach/bin/Debug/ForAndForEach.exe.config
new file mode 100644
index 0000000..56efbc7
--- /dev/null
+++ b/ForAndForEach/bin/Debug/ForAndForEach.exe.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ForAndForEach/bin/Debug/ForAndForEach.pdb b/ForAndForEach/bin/Debug/ForAndForEach.pdb
new file mode 100644
index 0000000..ba4b5bf
Binary files /dev/null and b/ForAndForEach/bin/Debug/ForAndForEach.pdb differ
diff --git a/ForAndForEach/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/ForAndForEach/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs
new file mode 100644
index 0000000..3871b18
--- /dev/null
+++ b/ForAndForEach/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
diff --git a/ForAndForEach/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/ForAndForEach/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
new file mode 100644
index 0000000..75965ae
Binary files /dev/null and b/ForAndForEach/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/ForAndForEach/obj/Debug/ForAndForEach.csproj.AssemblyReference.cache b/ForAndForEach/obj/Debug/ForAndForEach.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..126ed02
Binary files /dev/null and b/ForAndForEach/obj/Debug/ForAndForEach.csproj.AssemblyReference.cache differ
diff --git a/ForAndForEach/obj/Debug/ForAndForEach.csproj.CoreCompileInputs.cache b/ForAndForEach/obj/Debug/ForAndForEach.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..ee191d7
--- /dev/null
+++ b/ForAndForEach/obj/Debug/ForAndForEach.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+7f4b213b428f4c013f19137338418ee1f5525793
diff --git a/ForAndForEach/obj/Debug/ForAndForEach.csproj.FileListAbsolute.txt b/ForAndForEach/obj/Debug/ForAndForEach.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..3b7bf15
--- /dev/null
+++ b/ForAndForEach/obj/Debug/ForAndForEach.csproj.FileListAbsolute.txt
@@ -0,0 +1,8 @@
+C:\dev\c#\c-sharp\ForAndForEach\bin\Debug\ForAndForEach.exe.config
+C:\dev\c#\c-sharp\ForAndForEach\bin\Debug\ForAndForEach.exe
+C:\dev\c#\c-sharp\ForAndForEach\bin\Debug\ForAndForEach.pdb
+C:\dev\c#\c-sharp\ForAndForEach\obj\Debug\ForAndForEach.csproj.AssemblyReference.cache
+C:\dev\c#\c-sharp\ForAndForEach\obj\Debug\ForAndForEach.csproj.SuggestedBindingRedirects.cache
+C:\dev\c#\c-sharp\ForAndForEach\obj\Debug\ForAndForEach.csproj.CoreCompileInputs.cache
+C:\dev\c#\c-sharp\ForAndForEach\obj\Debug\ForAndForEach.exe
+C:\dev\c#\c-sharp\ForAndForEach\obj\Debug\ForAndForEach.pdb
diff --git a/ForAndForEach/obj/Debug/ForAndForEach.csproj.SuggestedBindingRedirects.cache b/ForAndForEach/obj/Debug/ForAndForEach.csproj.SuggestedBindingRedirects.cache
new file mode 100644
index 0000000..e69de29
diff --git a/ForAndForEach/obj/Debug/ForAndForEach.exe b/ForAndForEach/obj/Debug/ForAndForEach.exe
new file mode 100644
index 0000000..34a398d
Binary files /dev/null and b/ForAndForEach/obj/Debug/ForAndForEach.exe differ
diff --git a/ForAndForEach/obj/Debug/ForAndForEach.pdb b/ForAndForEach/obj/Debug/ForAndForEach.pdb
new file mode 100644
index 0000000..ba4b5bf
Binary files /dev/null and b/ForAndForEach/obj/Debug/ForAndForEach.pdb differ
diff --git a/Listak/App.config b/Listak/App.config
new file mode 100644
index 0000000..56efbc7
--- /dev/null
+++ b/Listak/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Listak/Listak.csproj b/Listak/Listak.csproj
new file mode 100644
index 0000000..80cf072
--- /dev/null
+++ b/Listak/Listak.csproj
@@ -0,0 +1,53 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {E17FEB51-006C-4AEE-AB99-4C53C191E8DE}
+ Exe
+ Listak
+ Listak
+ v4.7.2
+ 512
+ true
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Listak/Program.cs b/Listak/Program.cs
new file mode 100644
index 0000000..6c6a680
--- /dev/null
+++ b/Listak/Program.cs
@@ -0,0 +1,25 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Listak {
+ internal class Program {
+ static void Main(string[] args) {
+ List szamok = new List();
+ Random random = new Random();
+
+ for (int i = 0; i < random.Next(10,100); i++) {
+ szamok.Add(random.Next(10, 100));
+ }
+
+ foreach(int i in szamok) {
+ Console.WriteLine(i);
+ }
+
+ Console.ReadKey();
+
+ }
+ }
+}
diff --git a/Listak/Properties/AssemblyInfo.cs b/Listak/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..8a88df1
--- /dev/null
+++ b/Listak/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("Listak")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Listak")]
+[assembly: AssemblyCopyright("Copyright © 2022")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("e17feb51-006c-4aee-ab99-4c53c191e8de")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Listak/bin/Debug/Listak.exe b/Listak/bin/Debug/Listak.exe
new file mode 100644
index 0000000..e06f016
Binary files /dev/null and b/Listak/bin/Debug/Listak.exe differ
diff --git a/Listak/bin/Debug/Listak.exe.config b/Listak/bin/Debug/Listak.exe.config
new file mode 100644
index 0000000..56efbc7
--- /dev/null
+++ b/Listak/bin/Debug/Listak.exe.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Listak/bin/Debug/Listak.pdb b/Listak/bin/Debug/Listak.pdb
new file mode 100644
index 0000000..732c24e
Binary files /dev/null and b/Listak/bin/Debug/Listak.pdb differ
diff --git a/Listak/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/Listak/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs
new file mode 100644
index 0000000..3871b18
--- /dev/null
+++ b/Listak/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
diff --git a/Listak/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Listak/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
new file mode 100644
index 0000000..b085f63
Binary files /dev/null and b/Listak/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/Listak/obj/Debug/Listak.csproj.AssemblyReference.cache b/Listak/obj/Debug/Listak.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..126ed02
Binary files /dev/null and b/Listak/obj/Debug/Listak.csproj.AssemblyReference.cache differ
diff --git a/Listak/obj/Debug/Listak.csproj.CoreCompileInputs.cache b/Listak/obj/Debug/Listak.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..ee191d7
--- /dev/null
+++ b/Listak/obj/Debug/Listak.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+7f4b213b428f4c013f19137338418ee1f5525793
diff --git a/Listak/obj/Debug/Listak.csproj.FileListAbsolute.txt b/Listak/obj/Debug/Listak.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..1f23628
--- /dev/null
+++ b/Listak/obj/Debug/Listak.csproj.FileListAbsolute.txt
@@ -0,0 +1,8 @@
+C:\dev\c#\c-sharp\Listak\bin\Debug\Listak.exe.config
+C:\dev\c#\c-sharp\Listak\bin\Debug\Listak.exe
+C:\dev\c#\c-sharp\Listak\bin\Debug\Listak.pdb
+C:\dev\c#\c-sharp\Listak\obj\Debug\Listak.csproj.AssemblyReference.cache
+C:\dev\c#\c-sharp\Listak\obj\Debug\Listak.csproj.SuggestedBindingRedirects.cache
+C:\dev\c#\c-sharp\Listak\obj\Debug\Listak.csproj.CoreCompileInputs.cache
+C:\dev\c#\c-sharp\Listak\obj\Debug\Listak.exe
+C:\dev\c#\c-sharp\Listak\obj\Debug\Listak.pdb
diff --git a/Listak/obj/Debug/Listak.csproj.SuggestedBindingRedirects.cache b/Listak/obj/Debug/Listak.csproj.SuggestedBindingRedirects.cache
new file mode 100644
index 0000000..e69de29
diff --git a/Listak/obj/Debug/Listak.exe b/Listak/obj/Debug/Listak.exe
new file mode 100644
index 0000000..e06f016
Binary files /dev/null and b/Listak/obj/Debug/Listak.exe differ
diff --git a/Listak/obj/Debug/Listak.pdb b/Listak/obj/Debug/Listak.pdb
new file mode 100644
index 0000000..732c24e
Binary files /dev/null and b/Listak/obj/Debug/Listak.pdb differ
diff --git a/c-sharp.sln b/c-sharp.sln
index f40b393..a2c4a4a 100644
--- a/c-sharp.sln
+++ b/c-sharp.sln
@@ -39,6 +39,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Kettes", "Kettes\Kettes.csp
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Szamrendszer", "Szamrendszer\Szamrendszer.csproj", "{40B43AE7-7888-46B5-B680-834508CA2BCD}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Listak", "Listak\Listak.csproj", "{E17FEB51-006C-4AEE-AB99-4C53C191E8DE}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Elagazas", "Elagazas\Elagazas.csproj", "{2A6B1EE7-8A7E-4967-AC87-4DA2A455FCFB}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ForAndForEach", "ForAndForEach\ForAndForEach.csproj", "{27F3C28C-7F88-42AC-9B27-5D69E35B6803}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -117,6 +123,18 @@ Global
{40B43AE7-7888-46B5-B680-834508CA2BCD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{40B43AE7-7888-46B5-B680-834508CA2BCD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{40B43AE7-7888-46B5-B680-834508CA2BCD}.Release|Any CPU.Build.0 = Release|Any CPU
+ {E17FEB51-006C-4AEE-AB99-4C53C191E8DE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {E17FEB51-006C-4AEE-AB99-4C53C191E8DE}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {E17FEB51-006C-4AEE-AB99-4C53C191E8DE}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {E17FEB51-006C-4AEE-AB99-4C53C191E8DE}.Release|Any CPU.Build.0 = Release|Any CPU
+ {2A6B1EE7-8A7E-4967-AC87-4DA2A455FCFB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {2A6B1EE7-8A7E-4967-AC87-4DA2A455FCFB}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {2A6B1EE7-8A7E-4967-AC87-4DA2A455FCFB}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {2A6B1EE7-8A7E-4967-AC87-4DA2A455FCFB}.Release|Any CPU.Build.0 = Release|Any CPU
+ {27F3C28C-7F88-42AC-9B27-5D69E35B6803}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {27F3C28C-7F88-42AC-9B27-5D69E35B6803}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {27F3C28C-7F88-42AC-9B27-5D69E35B6803}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {27F3C28C-7F88-42AC-9B27-5D69E35B6803}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE