commit e3e1dff867643e40982c4a8ff4680bb11482ac5c Author: thewarrior1220 Date: Wed Feb 23 09:53:52 2022 +0100 Dolgozat1 diff --git a/.vs/Dolgozat1/v17/.suo b/.vs/Dolgozat1/v17/.suo new file mode 100644 index 0000000..e9dab6e Binary files /dev/null and b/.vs/Dolgozat1/v17/.suo differ diff --git a/Dolgozat1.sln b/Dolgozat1.sln new file mode 100644 index 0000000..04e1cdd --- /dev/null +++ b/Dolgozat1.sln @@ -0,0 +1,37 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.32112.339 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "negativ", "negativ\negativ.csproj", "{E33507A0-A0E6-4B00-B577-FA759F5102F0}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "konyv", "konyv\konyv.csproj", "{22EF1D25-E63E-45ED-939D-BA90C7F2A737}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "született", "született\született.csproj", "{2FAC5A69-B38A-4145-ABDB-B5E8E76FAFEE}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E33507A0-A0E6-4B00-B577-FA759F5102F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E33507A0-A0E6-4B00-B577-FA759F5102F0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E33507A0-A0E6-4B00-B577-FA759F5102F0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E33507A0-A0E6-4B00-B577-FA759F5102F0}.Release|Any CPU.Build.0 = Release|Any CPU + {22EF1D25-E63E-45ED-939D-BA90C7F2A737}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {22EF1D25-E63E-45ED-939D-BA90C7F2A737}.Debug|Any CPU.Build.0 = Debug|Any CPU + {22EF1D25-E63E-45ED-939D-BA90C7F2A737}.Release|Any CPU.ActiveCfg = Release|Any CPU + {22EF1D25-E63E-45ED-939D-BA90C7F2A737}.Release|Any CPU.Build.0 = Release|Any CPU + {2FAC5A69-B38A-4145-ABDB-B5E8E76FAFEE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2FAC5A69-B38A-4145-ABDB-B5E8E76FAFEE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2FAC5A69-B38A-4145-ABDB-B5E8E76FAFEE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2FAC5A69-B38A-4145-ABDB-B5E8E76FAFEE}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {496D621D-2B15-48DC-9C7E-B389E1CFB314} + EndGlobalSection +EndGlobal diff --git a/konyv/App.config b/konyv/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/konyv/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/konyv/Program.cs b/konyv/Program.cs new file mode 100644 index 0000000..b5fcdad --- /dev/null +++ b/konyv/Program.cs @@ -0,0 +1,32 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace konyv { + internal class Program { + + public static bool hosszu_e(int oldalak) { + if (oldalak > 150) return true; + + return false; + } + + static void Main(string[] args) { + string cim = ""; + int oldalak = 0; + do { + Console.Write("Add meg a könyv címét! "); + cim = Console.ReadLine(); + Console.Write("\nAdd meg az oldalak számát! "); + if(cim != "") + oldalak = Convert.ToInt32(Console.ReadLine()); + + if (hosszu_e(oldalak)) + Console.WriteLine("A {0} hosszú terjedelmű könyv", cim); + else Console.WriteLine("A {0} rövid terjedelmű könyv", cim); + } while (cim != ""); + } + } +} diff --git a/konyv/Properties/AssemblyInfo.cs b/konyv/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..9eadabf --- /dev/null +++ b/konyv/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("konyv")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("konyv")] +[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("22ef1d25-e63e-45ed-939d-ba90c7f2a737")] + +// 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/konyv/bin/Debug/konyv.exe b/konyv/bin/Debug/konyv.exe new file mode 100644 index 0000000..aabea6b Binary files /dev/null and b/konyv/bin/Debug/konyv.exe differ diff --git a/konyv/bin/Debug/konyv.exe.config b/konyv/bin/Debug/konyv.exe.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/konyv/bin/Debug/konyv.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/konyv/bin/Debug/konyv.pdb b/konyv/bin/Debug/konyv.pdb new file mode 100644 index 0000000..73c221f Binary files /dev/null and b/konyv/bin/Debug/konyv.pdb differ diff --git a/konyv/konyv.csproj b/konyv/konyv.csproj new file mode 100644 index 0000000..9561b9d --- /dev/null +++ b/konyv/konyv.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {22EF1D25-E63E-45ED-939D-BA90C7F2A737} + Exe + konyv + konyv + 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/konyv/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/konyv/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..3871b18 --- /dev/null +++ b/konyv/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/konyv/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/konyv/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..bc42ac1 Binary files /dev/null and b/konyv/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/konyv/obj/Debug/konyv.csproj.AssemblyReference.cache b/konyv/obj/Debug/konyv.csproj.AssemblyReference.cache new file mode 100644 index 0000000..97c8c82 Binary files /dev/null and b/konyv/obj/Debug/konyv.csproj.AssemblyReference.cache differ diff --git a/konyv/obj/Debug/konyv.csproj.CoreCompileInputs.cache b/konyv/obj/Debug/konyv.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..ee191d7 --- /dev/null +++ b/konyv/obj/Debug/konyv.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +7f4b213b428f4c013f19137338418ee1f5525793 diff --git a/konyv/obj/Debug/konyv.csproj.FileListAbsolute.txt b/konyv/obj/Debug/konyv.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..6fed6d8 --- /dev/null +++ b/konyv/obj/Debug/konyv.csproj.FileListAbsolute.txt @@ -0,0 +1,8 @@ +C:\dev\c#\dolgozat\Dolgozat1\konyv\bin\Debug\konyv.exe.config +C:\dev\c#\dolgozat\Dolgozat1\konyv\bin\Debug\konyv.exe +C:\dev\c#\dolgozat\Dolgozat1\konyv\bin\Debug\konyv.pdb +C:\dev\c#\dolgozat\Dolgozat1\konyv\obj\Debug\konyv.csproj.SuggestedBindingRedirects.cache +C:\dev\c#\dolgozat\Dolgozat1\konyv\obj\Debug\konyv.csproj.CoreCompileInputs.cache +C:\dev\c#\dolgozat\Dolgozat1\konyv\obj\Debug\konyv.exe +C:\dev\c#\dolgozat\Dolgozat1\konyv\obj\Debug\konyv.pdb +C:\dev\c#\dolgozat\Dolgozat1\konyv\obj\Debug\konyv.csproj.AssemblyReference.cache diff --git a/konyv/obj/Debug/konyv.csproj.SuggestedBindingRedirects.cache b/konyv/obj/Debug/konyv.csproj.SuggestedBindingRedirects.cache new file mode 100644 index 0000000..e69de29 diff --git a/konyv/obj/Debug/konyv.exe b/konyv/obj/Debug/konyv.exe new file mode 100644 index 0000000..aabea6b Binary files /dev/null and b/konyv/obj/Debug/konyv.exe differ diff --git a/konyv/obj/Debug/konyv.pdb b/konyv/obj/Debug/konyv.pdb new file mode 100644 index 0000000..73c221f Binary files /dev/null and b/konyv/obj/Debug/konyv.pdb differ diff --git a/negativ/App.config b/negativ/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/negativ/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/negativ/Program.cs b/negativ/Program.cs new file mode 100644 index 0000000..b638bec --- /dev/null +++ b/negativ/Program.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace negativ { + internal class Program { + static void Main(string[] args) { + int num1, num2 = 0; + + do { + Console.Write("Adj meg egy számot! "); + num1 = Convert.ToInt32(Console.ReadLine()); + Console.Write("\nAdd meg a második számot! "); + num2 = Convert.ToInt32(Console.ReadLine()); + } while (num1 == 0 && num2 == 0); + + if (num1 > 0 && num2 > 0) Console.WriteLine("A két szám közül egyik sem negatív"); + else if (num1 > 0 && num2 < 0) Console.WriteLine("A két szám közül a második negatív"); + else if (num1 < 0 && num2 > 0) Console.WriteLine("A két szám közül az elsÅ‘ negatív"); + else if (num1 < 0 && num2 < 0) Console.WriteLine("Mindkét szám negatív"); + + Console.ReadKey(); + } + } +} diff --git a/negativ/Properties/AssemblyInfo.cs b/negativ/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..a8c61ca --- /dev/null +++ b/negativ/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("negativ")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("negativ")] +[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("e33507a0-a0e6-4b00-b577-fa759f5102f0")] + +// 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/negativ/bin/Debug/negativ.exe b/negativ/bin/Debug/negativ.exe new file mode 100644 index 0000000..d995992 Binary files /dev/null and b/negativ/bin/Debug/negativ.exe differ diff --git a/negativ/bin/Debug/negativ.exe.config b/negativ/bin/Debug/negativ.exe.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/negativ/bin/Debug/negativ.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/negativ/bin/Debug/negativ.pdb b/negativ/bin/Debug/negativ.pdb new file mode 100644 index 0000000..889d59e Binary files /dev/null and b/negativ/bin/Debug/negativ.pdb differ diff --git a/negativ/negativ.csproj b/negativ/negativ.csproj new file mode 100644 index 0000000..47e1ab3 --- /dev/null +++ b/negativ/negativ.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {E33507A0-A0E6-4B00-B577-FA759F5102F0} + Exe + negativ + negativ + 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/negativ/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/negativ/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..3871b18 --- /dev/null +++ b/negativ/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/negativ/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/negativ/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..905f1ce Binary files /dev/null and b/negativ/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/negativ/obj/Debug/negativ.csproj.AssemblyReference.cache b/negativ/obj/Debug/negativ.csproj.AssemblyReference.cache new file mode 100644 index 0000000..204fdef Binary files /dev/null and b/negativ/obj/Debug/negativ.csproj.AssemblyReference.cache differ diff --git a/negativ/obj/Debug/negativ.csproj.CoreCompileInputs.cache b/negativ/obj/Debug/negativ.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..ee191d7 --- /dev/null +++ b/negativ/obj/Debug/negativ.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +7f4b213b428f4c013f19137338418ee1f5525793 diff --git a/negativ/obj/Debug/negativ.csproj.FileListAbsolute.txt b/negativ/obj/Debug/negativ.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..c5b6450 --- /dev/null +++ b/negativ/obj/Debug/negativ.csproj.FileListAbsolute.txt @@ -0,0 +1,8 @@ +C:\dev\c#\dolgozat\Dolgozat1\negativ\bin\Debug\negativ.exe.config +C:\dev\c#\dolgozat\Dolgozat1\negativ\bin\Debug\negativ.exe +C:\dev\c#\dolgozat\Dolgozat1\negativ\bin\Debug\negativ.pdb +C:\dev\c#\dolgozat\Dolgozat1\negativ\obj\Debug\negativ.csproj.AssemblyReference.cache +C:\dev\c#\dolgozat\Dolgozat1\negativ\obj\Debug\negativ.csproj.SuggestedBindingRedirects.cache +C:\dev\c#\dolgozat\Dolgozat1\negativ\obj\Debug\negativ.csproj.CoreCompileInputs.cache +C:\dev\c#\dolgozat\Dolgozat1\negativ\obj\Debug\negativ.exe +C:\dev\c#\dolgozat\Dolgozat1\negativ\obj\Debug\negativ.pdb diff --git a/negativ/obj/Debug/negativ.csproj.SuggestedBindingRedirects.cache b/negativ/obj/Debug/negativ.csproj.SuggestedBindingRedirects.cache new file mode 100644 index 0000000..e69de29 diff --git a/negativ/obj/Debug/negativ.exe b/negativ/obj/Debug/negativ.exe new file mode 100644 index 0000000..d995992 Binary files /dev/null and b/negativ/obj/Debug/negativ.exe differ diff --git a/negativ/obj/Debug/negativ.pdb b/negativ/obj/Debug/negativ.pdb new file mode 100644 index 0000000..889d59e Binary files /dev/null and b/negativ/obj/Debug/negativ.pdb differ diff --git a/született/App.config b/született/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/született/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/született/Ember.cs b/született/Ember.cs new file mode 100644 index 0000000..d3ea4b3 --- /dev/null +++ b/született/Ember.cs @@ -0,0 +1,63 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace született { + internal class Ember { + private string nev; + private string foglalkozas; + private string nem; + private int szerencse_szam; + Random random = new Random(); + + public Ember(string nev, string foglalkozas, string nem) { + this.nev = nev; + this.foglalkozas = foglalkozas; + this.nem = nem; + szerencse_szam = random.Next(1, 51); + } + + //Getter setters for variables + public string getNev() { + return nev; + } + public void setNev(string nev) { + this.nev = nev; + } + + public string getFoglalkozas() { + return foglalkozas; + } + public void setFoglalozas(string foglalkozas) { + this.foglalkozas = foglalkozas; + } + + public string getNem() { + return nem; + } + public void setNem(string nem) { + this.nev = nem; + } + + public int getSzerencse_szam() { + return szerencse_szam; + } + public void setSzerencse_szam(int szerencse_szam) { + this.szerencse_szam = szerencse_szam; + } + + //Methods + public string isFerfi() { + if (nem.Equals("n") || nem.Equals("N")) + return "nÅ‘"; + + return "férfi"; + } + + public string kiir() { + return nev + " egy " + foglalkozas + " " + isFerfi() + " volt, szerencse száma a " + szerencse_szam; + } + } +} diff --git a/született/Program.cs b/született/Program.cs new file mode 100644 index 0000000..d5b443f --- /dev/null +++ b/született/Program.cs @@ -0,0 +1,48 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.IO; + +namespace született { + internal class Program { + static void Main(string[] args) { + Console.Write("Add meg a nevet! "); + string nev = Console.ReadLine(); + Console.Write("\nAdd meg a foglalkozását! "); + string foglalkozas = Console.ReadLine(); + Console.Write("\nAdd meg a nemét!(f/n) "); + string nem = Console.ReadLine(); + Ember ember1 = new Ember(nev, foglalkozas, nem); + + Console.Write("Add meg a nevet! "); + nev = Console.ReadLine(); + Console.Write("\nAdd meg a foglalkozását! "); + foglalkozas = Console.ReadLine(); + Console.Write("\nAdd meg a nemét!(f/n) "); + nem = Console.ReadLine(); + Ember ember2 = new Ember(nev, foglalkozas, nem); + + Console.Write("Add meg a nevet! "); + nev = Console.ReadLine(); + Console.Write("\nAdd meg a foglalkozását! "); + foglalkozas = Console.ReadLine(); + Console.Write("\nAdd meg a nemét!(f/n) "); + nem = Console.ReadLine(); + Ember ember3 = new Ember(nev, foglalkozas, nem); + + Console.WriteLine(ember1.kiir()); + Console.WriteLine(ember2.kiir()); + Console.WriteLine(ember3.kiir()); + + StreamWriter writer = new StreamWriter(@"szuletettki.txt", false, Encoding.Default); + writer.WriteLine(ember1.kiir()); + writer.WriteLine(ember2.kiir()); + writer.WriteLine(ember3.kiir()); + writer.Close(); + + Console.ReadKey(); + } + } +} diff --git a/született/Properties/AssemblyInfo.cs b/született/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..dffd4ba --- /dev/null +++ b/született/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("született")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("született")] +[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("2fac5a69-b38a-4145-abdb-b5e8e76fafee")] + +// 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/született/bin/Debug/szuletettki.txt b/született/bin/Debug/szuletettki.txt new file mode 100644 index 0000000..9b9a143 --- /dev/null +++ b/született/bin/Debug/szuletettki.txt @@ -0,0 +1,3 @@ +Kiss Pista egy sofor férfi volt, szerencse száma a 50 +Nagy anna egy kovacs nõ volt, szerencse száma a 20 +Nagy Lajos egy lls férfi volt, szerencse száma a 44 diff --git a/született/bin/Debug/született.exe b/született/bin/Debug/született.exe new file mode 100644 index 0000000..031b7fe Binary files /dev/null and b/született/bin/Debug/született.exe differ diff --git a/született/bin/Debug/született.exe.config b/született/bin/Debug/született.exe.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/született/bin/Debug/született.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/született/bin/Debug/született.pdb b/született/bin/Debug/született.pdb new file mode 100644 index 0000000..576f1ba Binary files /dev/null and b/született/bin/Debug/született.pdb differ diff --git a/született/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/született/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..3871b18 --- /dev/null +++ b/született/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/született/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/született/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..4d6c612 Binary files /dev/null and b/született/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/született/obj/Debug/született.csproj.CoreCompileInputs.cache b/született/obj/Debug/született.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..5cf99ef --- /dev/null +++ b/született/obj/Debug/született.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +867b10ce2078e887d681e45ddfff78ccfca05c60 diff --git a/született/obj/Debug/született.csproj.FileListAbsolute.txt b/született/obj/Debug/született.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..de1308a --- /dev/null +++ b/született/obj/Debug/született.csproj.FileListAbsolute.txt @@ -0,0 +1,7 @@ +C:\dev\c#\dolgozat\Dolgozat1\született\bin\Debug\született.exe.config +C:\dev\c#\dolgozat\Dolgozat1\született\bin\Debug\született.exe +C:\dev\c#\dolgozat\Dolgozat1\született\bin\Debug\született.pdb +C:\dev\c#\dolgozat\Dolgozat1\született\obj\Debug\született.csproj.SuggestedBindingRedirects.cache +C:\dev\c#\dolgozat\Dolgozat1\született\obj\Debug\született.csproj.CoreCompileInputs.cache +C:\dev\c#\dolgozat\Dolgozat1\született\obj\Debug\született.exe +C:\dev\c#\dolgozat\Dolgozat1\született\obj\Debug\született.pdb diff --git a/született/obj/Debug/született.csproj.SuggestedBindingRedirects.cache b/született/obj/Debug/született.csproj.SuggestedBindingRedirects.cache new file mode 100644 index 0000000..e69de29 diff --git a/született/obj/Debug/született.exe b/született/obj/Debug/született.exe new file mode 100644 index 0000000..031b7fe Binary files /dev/null and b/született/obj/Debug/született.exe differ diff --git a/született/obj/Debug/született.pdb b/született/obj/Debug/született.pdb new file mode 100644 index 0000000..576f1ba Binary files /dev/null and b/született/obj/Debug/született.pdb differ diff --git a/született/született.csproj b/született/született.csproj new file mode 100644 index 0000000..bbbd488 --- /dev/null +++ b/született/született.csproj @@ -0,0 +1,54 @@ + + + + + Debug + AnyCPU + {2FAC5A69-B38A-4145-ABDB-B5E8E76FAFEE} + Exe + született + született + 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