diff --git a/AtlagHom/obj/Debug/AtlagHom.csproj.AssemblyReference.cache b/AtlagHom/obj/Debug/AtlagHom.csproj.AssemblyReference.cache
index 126ed02..58cdbeb 100644
Binary files a/AtlagHom/obj/Debug/AtlagHom.csproj.AssemblyReference.cache and b/AtlagHom/obj/Debug/AtlagHom.csproj.AssemblyReference.cache differ
diff --git a/AtlagHom/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/AtlagHom/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index ce35228..94487e9 100644
Binary files a/AtlagHom/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/AtlagHom/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/Binaris/obj/Debug/Binaris.csproj.AssemblyReference.cache b/Binaris/obj/Debug/Binaris.csproj.AssemblyReference.cache
index 126ed02..58cdbeb 100644
Binary files a/Binaris/obj/Debug/Binaris.csproj.AssemblyReference.cache and b/Binaris/obj/Debug/Binaris.csproj.AssemblyReference.cache differ
diff --git a/Binaris/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Binaris/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index 44c31df..6689c88 100644
Binary files a/Binaris/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/Binaris/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/BuborekRendezes/obj/Debug/BuborekRendezes.csproj.AssemblyReference.cache b/BuborekRendezes/obj/Debug/BuborekRendezes.csproj.AssemblyReference.cache
index 126ed02..58cdbeb 100644
Binary files a/BuborekRendezes/obj/Debug/BuborekRendezes.csproj.AssemblyReference.cache and b/BuborekRendezes/obj/Debug/BuborekRendezes.csproj.AssemblyReference.cache differ
diff --git a/BuborekRendezes/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/BuborekRendezes/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index 8772cff..989eed9 100644
Binary files a/BuborekRendezes/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/BuborekRendezes/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/Elagazas/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Elagazas/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index bc01851..5b8916c 100644
Binary files a/Elagazas/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache 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
index 126ed02..58cdbeb 100644
Binary files a/Elagazas/obj/Debug/Elagazas.csproj.AssemblyReference.cache and b/Elagazas/obj/Debug/Elagazas.csproj.AssemblyReference.cache differ
diff --git a/Fibonacci/App.config b/Fibonacci/App.config
new file mode 100644
index 0000000..56efbc7
--- /dev/null
+++ b/Fibonacci/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Fibonacci/Fibonacci.csproj b/Fibonacci/Fibonacci.csproj
new file mode 100644
index 0000000..9d9d459
--- /dev/null
+++ b/Fibonacci/Fibonacci.csproj
@@ -0,0 +1,53 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {FAE7220C-8E06-4D42-B54C-573A60584C51}
+ Exe
+ Fibonacci
+ Fibonacci
+ 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/Fibonacci/Program.cs b/Fibonacci/Program.cs
new file mode 100644
index 0000000..62ae86b
--- /dev/null
+++ b/Fibonacci/Program.cs
@@ -0,0 +1,32 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Fibonacci {
+ internal class Program {
+ public static ulong fibonacci(int darab) {
+ if ((darab == 0) || (darab == 1)) {
+ return Convert.ToUInt64(darab);
+ } else {
+ return fibonacci(darab - 1) + fibonacci(darab - 2);
+ }
+ }
+
+ static void Main(string[] args) {
+ Console.WriteLine("Adja meg hány számot akar látni");
+ ulong darab = Convert.ToUInt64(Console.ReadLine());
+
+ ulong a = 0, b = 1, szamlalo = 0;
+ while (szamlalo++ < darab) {
+ b += a;
+ a = b - a;
+
+ Console.WriteLine(b);
+ }
+
+ Console.ReadKey();
+ }
+ }
+}
diff --git a/Fibonacci/Properties/AssemblyInfo.cs b/Fibonacci/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..0bf1b0d
--- /dev/null
+++ b/Fibonacci/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("Fibonacci")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Fibonacci")]
+[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("fae7220c-8e06-4d42-b54c-573a60584c51")]
+
+// 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/Fibonacci/bin/Debug/Fibonacci.exe b/Fibonacci/bin/Debug/Fibonacci.exe
new file mode 100644
index 0000000..e8c2ac9
Binary files /dev/null and b/Fibonacci/bin/Debug/Fibonacci.exe differ
diff --git a/Fibonacci/bin/Debug/Fibonacci.exe.config b/Fibonacci/bin/Debug/Fibonacci.exe.config
new file mode 100644
index 0000000..56efbc7
--- /dev/null
+++ b/Fibonacci/bin/Debug/Fibonacci.exe.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Fibonacci/bin/Debug/Fibonacci.pdb b/Fibonacci/bin/Debug/Fibonacci.pdb
new file mode 100644
index 0000000..4459bb0
Binary files /dev/null and b/Fibonacci/bin/Debug/Fibonacci.pdb differ
diff --git a/Fibonacci/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/Fibonacci/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs
new file mode 100644
index 0000000..3871b18
--- /dev/null
+++ b/Fibonacci/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/Fibonacci/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Fibonacci/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
new file mode 100644
index 0000000..67c1b10
Binary files /dev/null and b/Fibonacci/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/Fibonacci/obj/Debug/Fibonacci.csproj.AssemblyReference.cache b/Fibonacci/obj/Debug/Fibonacci.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..58cdbeb
Binary files /dev/null and b/Fibonacci/obj/Debug/Fibonacci.csproj.AssemblyReference.cache differ
diff --git a/Fibonacci/obj/Debug/Fibonacci.csproj.CoreCompileInputs.cache b/Fibonacci/obj/Debug/Fibonacci.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..ee191d7
--- /dev/null
+++ b/Fibonacci/obj/Debug/Fibonacci.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+7f4b213b428f4c013f19137338418ee1f5525793
diff --git a/Fibonacci/obj/Debug/Fibonacci.csproj.FileListAbsolute.txt b/Fibonacci/obj/Debug/Fibonacci.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..b83cd04
--- /dev/null
+++ b/Fibonacci/obj/Debug/Fibonacci.csproj.FileListAbsolute.txt
@@ -0,0 +1,8 @@
+C:\dev\c#\Fibonacci\bin\Debug\Fibonacci.exe.config
+C:\dev\c#\Fibonacci\bin\Debug\Fibonacci.exe
+C:\dev\c#\Fibonacci\bin\Debug\Fibonacci.pdb
+C:\dev\c#\Fibonacci\obj\Debug\Fibonacci.csproj.AssemblyReference.cache
+C:\dev\c#\Fibonacci\obj\Debug\Fibonacci.csproj.SuggestedBindingRedirects.cache
+C:\dev\c#\Fibonacci\obj\Debug\Fibonacci.csproj.CoreCompileInputs.cache
+C:\dev\c#\Fibonacci\obj\Debug\Fibonacci.exe
+C:\dev\c#\Fibonacci\obj\Debug\Fibonacci.pdb
diff --git a/Fibonacci/obj/Debug/Fibonacci.csproj.SuggestedBindingRedirects.cache b/Fibonacci/obj/Debug/Fibonacci.csproj.SuggestedBindingRedirects.cache
new file mode 100644
index 0000000..e69de29
diff --git a/Fibonacci/obj/Debug/Fibonacci.exe b/Fibonacci/obj/Debug/Fibonacci.exe
new file mode 100644
index 0000000..e8c2ac9
Binary files /dev/null and b/Fibonacci/obj/Debug/Fibonacci.exe differ
diff --git a/Fibonacci/obj/Debug/Fibonacci.pdb b/Fibonacci/obj/Debug/Fibonacci.pdb
new file mode 100644
index 0000000..4459bb0
Binary files /dev/null and b/Fibonacci/obj/Debug/Fibonacci.pdb differ
diff --git a/ForAndForEach/Program.cs b/ForAndForEach/Program.cs
index 7953228..0641002 100644
--- a/ForAndForEach/Program.cs
+++ b/ForAndForEach/Program.cs
@@ -17,7 +17,7 @@ namespace ForAndForEach {
for (int i = 0; i < list.Count; i++) {
Console.WriteLine(list[i]);
}
- Console.WriteLine();
+ Console.WriteLine("\nforeach:");
foreach(int i in list) {
Console.WriteLine(i);
diff --git a/ForAndForEach/bin/Debug/ForAndForEach.exe b/ForAndForEach/bin/Debug/ForAndForEach.exe
index 34a398d..f95a0d5 100644
Binary files a/ForAndForEach/bin/Debug/ForAndForEach.exe and b/ForAndForEach/bin/Debug/ForAndForEach.exe differ
diff --git a/ForAndForEach/bin/Debug/ForAndForEach.pdb b/ForAndForEach/bin/Debug/ForAndForEach.pdb
index ba4b5bf..bfc5149 100644
Binary files a/ForAndForEach/bin/Debug/ForAndForEach.pdb and b/ForAndForEach/bin/Debug/ForAndForEach.pdb differ
diff --git a/ForAndForEach/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/ForAndForEach/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index 75965ae..c23cdfa 100644
Binary files a/ForAndForEach/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache 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
index 126ed02..58cdbeb 100644
Binary files a/ForAndForEach/obj/Debug/ForAndForEach.csproj.AssemblyReference.cache and b/ForAndForEach/obj/Debug/ForAndForEach.csproj.AssemblyReference.cache differ
diff --git a/ForAndForEach/obj/Debug/ForAndForEach.csproj.FileListAbsolute.txt b/ForAndForEach/obj/Debug/ForAndForEach.csproj.FileListAbsolute.txt
index 3b7bf15..402a3e1 100644
--- a/ForAndForEach/obj/Debug/ForAndForEach.csproj.FileListAbsolute.txt
+++ b/ForAndForEach/obj/Debug/ForAndForEach.csproj.FileListAbsolute.txt
@@ -6,3 +6,11 @@ C:\dev\c#\c-sharp\ForAndForEach\obj\Debug\ForAndForEach.csproj.SuggestedBindingR
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
+C:\dev\c#\ForAndForEach\bin\Debug\ForAndForEach.exe.config
+C:\dev\c#\ForAndForEach\bin\Debug\ForAndForEach.exe
+C:\dev\c#\ForAndForEach\bin\Debug\ForAndForEach.pdb
+C:\dev\c#\ForAndForEach\obj\Debug\ForAndForEach.csproj.AssemblyReference.cache
+C:\dev\c#\ForAndForEach\obj\Debug\ForAndForEach.csproj.SuggestedBindingRedirects.cache
+C:\dev\c#\ForAndForEach\obj\Debug\ForAndForEach.csproj.CoreCompileInputs.cache
+C:\dev\c#\ForAndForEach\obj\Debug\ForAndForEach.exe
+C:\dev\c#\ForAndForEach\obj\Debug\ForAndForEach.pdb
diff --git a/ForAndForEach/obj/Debug/ForAndForEach.exe b/ForAndForEach/obj/Debug/ForAndForEach.exe
index 34a398d..f95a0d5 100644
Binary files a/ForAndForEach/obj/Debug/ForAndForEach.exe and b/ForAndForEach/obj/Debug/ForAndForEach.exe differ
diff --git a/ForAndForEach/obj/Debug/ForAndForEach.pdb b/ForAndForEach/obj/Debug/ForAndForEach.pdb
index ba4b5bf..bfc5149 100644
Binary files a/ForAndForEach/obj/Debug/ForAndForEach.pdb and b/ForAndForEach/obj/Debug/ForAndForEach.pdb differ
diff --git a/Homerseklet_elemzes/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Homerseklet_elemzes/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index aec4dff..f8ba292 100644
Binary files a/Homerseklet_elemzes/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/Homerseklet_elemzes/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/Homerseklet_elemzes/obj/Debug/Homerseklet_elemzes.csproj.AssemblyReference.cache b/Homerseklet_elemzes/obj/Debug/Homerseklet_elemzes.csproj.AssemblyReference.cache
index 126ed02..58cdbeb 100644
Binary files a/Homerseklet_elemzes/obj/Debug/Homerseklet_elemzes.csproj.AssemblyReference.cache and b/Homerseklet_elemzes/obj/Debug/Homerseklet_elemzes.csproj.AssemblyReference.cache differ
diff --git a/Kettes/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Kettes/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index 0a669d3..8276fec 100644
Binary files a/Kettes/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/Kettes/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/Kettes/obj/Debug/Kettes.csproj.AssemblyReference.cache b/Kettes/obj/Debug/Kettes.csproj.AssemblyReference.cache
index 126ed02..58cdbeb 100644
Binary files a/Kettes/obj/Debug/Kettes.csproj.AssemblyReference.cache and b/Kettes/obj/Debug/Kettes.csproj.AssemblyReference.cache differ
diff --git a/Kor/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Kor/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index c2d7bef..1ec6c79 100644
Binary files a/Kor/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/Kor/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/Kor/obj/Debug/Kor.csproj.AssemblyReference.cache b/Kor/obj/Debug/Kor.csproj.AssemblyReference.cache
index 126ed02..58cdbeb 100644
Binary files a/Kor/obj/Debug/Kor.csproj.AssemblyReference.cache and b/Kor/obj/Debug/Kor.csproj.AssemblyReference.cache differ
diff --git a/Listak/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Listak/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index b085f63..1733195 100644
Binary files a/Listak/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache 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
index 126ed02..58cdbeb 100644
Binary files a/Listak/obj/Debug/Listak.csproj.AssemblyReference.cache and b/Listak/obj/Debug/Listak.csproj.AssemblyReference.cache differ
diff --git a/Lotto/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Lotto/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index ef73bae..8f0a151 100644
Binary files a/Lotto/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/Lotto/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/Lotto/obj/Debug/Lotto.csproj.AssemblyReference.cache b/Lotto/obj/Debug/Lotto.csproj.AssemblyReference.cache
index 126ed02..58cdbeb 100644
Binary files a/Lotto/obj/Debug/Lotto.csproj.AssemblyReference.cache and b/Lotto/obj/Debug/Lotto.csproj.AssemblyReference.cache differ
diff --git a/Menu/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Menu/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index 983d68e..a1ebf10 100644
Binary files a/Menu/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/Menu/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/Menu/obj/Debug/Menu.csproj.AssemblyReference.cache b/Menu/obj/Debug/Menu.csproj.AssemblyReference.cache
index 126ed02..58cdbeb 100644
Binary files a/Menu/obj/Debug/Menu.csproj.AssemblyReference.cache and b/Menu/obj/Debug/Menu.csproj.AssemblyReference.cache differ
diff --git a/MinMax/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/MinMax/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index 44d3e65..bdc5b3f 100644
Binary files a/MinMax/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/MinMax/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/MinMax/obj/Debug/MinMax.csproj.AssemblyReference.cache b/MinMax/obj/Debug/MinMax.csproj.AssemblyReference.cache
index 126ed02..58cdbeb 100644
Binary files a/MinMax/obj/Debug/MinMax.csproj.AssemblyReference.cache and b/MinMax/obj/Debug/MinMax.csproj.AssemblyReference.cache differ
diff --git a/RegularExpressions/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/RegularExpressions/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index e20996e..ed71441 100644
Binary files a/RegularExpressions/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/RegularExpressions/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/RegularExpressions/obj/Debug/RegularExpressions.csproj.AssemblyReference.cache b/RegularExpressions/obj/Debug/RegularExpressions.csproj.AssemblyReference.cache
index 126ed02..58cdbeb 100644
Binary files a/RegularExpressions/obj/Debug/RegularExpressions.csproj.AssemblyReference.cache and b/RegularExpressions/obj/Debug/RegularExpressions.csproj.AssemblyReference.cache differ
diff --git a/RekurzivFaktorialis/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/RekurzivFaktorialis/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index 75d1e3a..36b7f90 100644
Binary files a/RekurzivFaktorialis/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/RekurzivFaktorialis/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/RekurzivFaktorialis/obj/Debug/RekurzivFaktorialis.csproj.AssemblyReference.cache b/RekurzivFaktorialis/obj/Debug/RekurzivFaktorialis.csproj.AssemblyReference.cache
index 126ed02..58cdbeb 100644
Binary files a/RekurzivFaktorialis/obj/Debug/RekurzivFaktorialis.csproj.AssemblyReference.cache and b/RekurzivFaktorialis/obj/Debug/RekurzivFaktorialis.csproj.AssemblyReference.cache differ
diff --git a/RekurzivHatvany/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/RekurzivHatvany/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index bf562e3..925de2c 100644
Binary files a/RekurzivHatvany/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/RekurzivHatvany/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/RekurzivHatvany/obj/Debug/RekurzivHatvany.csproj.AssemblyReference.cache b/RekurzivHatvany/obj/Debug/RekurzivHatvany.csproj.AssemblyReference.cache
index 126ed02..58cdbeb 100644
Binary files a/RekurzivHatvany/obj/Debug/RekurzivHatvany.csproj.AssemblyReference.cache and b/RekurzivHatvany/obj/Debug/RekurzivHatvany.csproj.AssemblyReference.cache differ
diff --git a/Sorozatok/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Sorozatok/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index 01bb459..2262ca3 100644
Binary files a/Sorozatok/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/Sorozatok/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/Sorozatok/obj/Debug/Sorozatok.csproj.AssemblyReference.cache b/Sorozatok/obj/Debug/Sorozatok.csproj.AssemblyReference.cache
index 126ed02..58cdbeb 100644
Binary files a/Sorozatok/obj/Debug/Sorozatok.csproj.AssemblyReference.cache and b/Sorozatok/obj/Debug/Sorozatok.csproj.AssemblyReference.cache differ
diff --git a/Szamkitalalo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Szamkitalalo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index 1796b62..85ce0f8 100644
Binary files a/Szamkitalalo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/Szamkitalalo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/Szamkitalalo/obj/Debug/Szamkitalalo.csproj.AssemblyReference.cache b/Szamkitalalo/obj/Debug/Szamkitalalo.csproj.AssemblyReference.cache
index 126ed02..58cdbeb 100644
Binary files a/Szamkitalalo/obj/Debug/Szamkitalalo.csproj.AssemblyReference.cache and b/Szamkitalalo/obj/Debug/Szamkitalalo.csproj.AssemblyReference.cache differ
diff --git a/Szamrendszer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Szamrendszer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index 228e315..cc1cef0 100644
Binary files a/Szamrendszer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/Szamrendszer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/Szamrendszer/obj/Debug/Szamrendszer.csproj.AssemblyReference.cache b/Szamrendszer/obj/Debug/Szamrendszer.csproj.AssemblyReference.cache
index 126ed02..58cdbeb 100644
Binary files a/Szamrendszer/obj/Debug/Szamrendszer.csproj.AssemblyReference.cache and b/Szamrendszer/obj/Debug/Szamrendszer.csproj.AssemblyReference.cache differ
diff --git a/Szigetek/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Szigetek/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index e6ee101..ac8a7b9 100644
Binary files a/Szigetek/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/Szigetek/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/Szigetek/obj/Debug/Szigetek.csproj.AssemblyReference.cache b/Szigetek/obj/Debug/Szigetek.csproj.AssemblyReference.cache
index 126ed02..58cdbeb 100644
Binary files a/Szigetek/obj/Debug/Szigetek.csproj.AssemblyReference.cache and b/Szigetek/obj/Debug/Szigetek.csproj.AssemblyReference.cache differ
diff --git a/c-sharp.sln b/c-sharp.sln
index a2c4a4a..b03d781 100644
--- a/c-sharp.sln
+++ b/c-sharp.sln
@@ -45,6 +45,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Elagazas", "Elagazas\Elagaz
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ForAndForEach", "ForAndForEach\ForAndForEach.csproj", "{27F3C28C-7F88-42AC-9B27-5D69E35B6803}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Fibonacci", "Fibonacci\Fibonacci.csproj", "{FAE7220C-8E06-4D42-B54C-573A60584C51}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -135,6 +137,10 @@ Global
{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
+ {FAE7220C-8E06-4D42-B54C-573A60584C51}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {FAE7220C-8E06-4D42-B54C-573A60584C51}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {FAE7220C-8E06-4D42-B54C-573A60584C51}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {FAE7220C-8E06-4D42-B54C-573A60584C51}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/c-sharp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/c-sharp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index 2a7adbf..5a61f3e 100644
Binary files a/c-sharp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/c-sharp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/c-sharp/obj/Debug/c-sharp.csproj.AssemblyReference.cache b/c-sharp/obj/Debug/c-sharp.csproj.AssemblyReference.cache
index 126ed02..58cdbeb 100644
Binary files a/c-sharp/obj/Debug/c-sharp.csproj.AssemblyReference.cache and b/c-sharp/obj/Debug/c-sharp.csproj.AssemblyReference.cache differ
diff --git a/kivetelek/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/kivetelek/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index e8ffcfe..6d558aa 100644
Binary files a/kivetelek/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/kivetelek/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/kivetelek/obj/Debug/kivetelek.csproj.AssemblyReference.cache b/kivetelek/obj/Debug/kivetelek.csproj.AssemblyReference.cache
index 126ed02..58cdbeb 100644
Binary files a/kivetelek/obj/Debug/kivetelek.csproj.AssemblyReference.cache and b/kivetelek/obj/Debug/kivetelek.csproj.AssemblyReference.cache differ