├── .gitignore ├── 05.BasicSyntaxConditionalStatementsAndLoops ├── 01-CSharp-Fundamentals-Intro-and-Basic-Syntax-Lab.docx ├── 01-CSharp-Fundamentals-Intro-and-Basic-Syntax.pdf ├── 01.StudentInformation │ ├── 01.StudentInformation.csproj │ └── Program.cs ├── 01.Variable │ ├── 01.Variable.csproj │ └── Program.cs ├── 02.IfStatements │ ├── 02.IfStatements.csproj │ └── Program.cs ├── 02.Passed │ ├── 02.Passed.csproj │ └── Program.cs ├── 03.ForLoops │ ├── 03.ForLoops.csproj │ └── Program.cs ├── 03.PassedOrFailed │ ├── 03.PassedOrFailed.csproj │ └── Program.cs ├── 04.BackIn30Minutes │ ├── 04.BackIn30Minutes.csproj │ └── Program.cs ├── 05.BasicSyntaxConditionalStatementsAndLoops.sln ├── 05.MonthPrinter │ ├── 05.MonthPrinter.csproj │ └── Program.cs ├── 06.ForeignLanguages │ ├── 06.ForeignLanguages.csproj │ └── Program.cs ├── 07.TheatrePromotions │ ├── 07.TheatrePromotions.csproj │ └── Program.cs ├── 08.DivisibleBy3 │ ├── 08.DivisibleBy3.csproj │ └── Program.cs ├── 09.SumOfOddNumbers │ ├── 09.SumOfOddNumbers.csproj │ └── Program.cs ├── 10.MultiplicationTable │ ├── 10.MultiplicationTable.csproj │ └── Program.cs ├── 11.MultiplicationTable2.0 │ ├── 11.MultiplicationTable2.0.csproj │ └── Program.cs ├── 12.EvenNumber │ ├── 12.EvenNumber.csproj │ └── Program.cs └── 13.HolidaysBetweenTwoDates │ ├── 13.HolidaysBetweenTwoDates.csproj │ └── Program.cs ├── 06.Exercise.BasicSyntaxConditionalStatementsLoops ├── 01. CSharp-Fundamentals-Intro-and-Basic-Syntax-Exercise.docx ├── 01.Ages │ ├── 01.Ages.csproj │ └── Program.cs ├── 02.Division │ ├── 02.Division.csproj │ └── Program.cs ├── 03. Vacation │ ├── 03. Vacation.csproj │ └── Program.cs ├── 04.PrintAndSum │ ├── 04.PrintAndSum.csproj │ └── Program.cs ├── 05.Login │ ├── 05.Login.csproj │ └── Program.cs ├── 06.Exercise.BasicSyntaxConditionalStatementsLoops.sln ├── 06.StrongNumber │ ├── 06.StrongNumber.csproj │ └── Program.cs ├── 07.VendingMachine │ ├── 07.VendingMachine.csproj │ └── Program.cs ├── 08.TriangleOfNumbers │ ├── 08.TriangleOfNumbers.csproj │ └── Program.cs ├── 09.PadawanEquipment │ ├── 09.PadawanEquipment.csproj │ └── Program.cs ├── 10.RageExpenses │ ├── 10.RageExpenses.csproj │ └── Program.cs └── 11.Orders │ ├── 11.Orders.csproj │ └── Program.cs ├── 09.Exercise.DataTypesAndVariables ├── 01.IntegerOperations │ ├── 01.IntegerOperations.csproj │ └── Program.cs ├── 02. CSharp-Fundamentals-Data-Types-and-Variables-Exercise.docx ├── 02. Sum Digits │ ├── 02. Sum Digits.csproj │ └── Program.cs ├── 03.Elevator │ ├── 03.Elevator.csproj │ └── Program.cs ├── 04.SumOfChars │ ├── 04.SumOfChars.csproj │ └── Program.cs ├── 05.PrintPartOfASCIITable │ ├── 05.PrintPartOfASCIITable.csproj │ └── Program.cs ├── 06.TriplesOfLatinLetters │ ├── 06.TriplesOfLatinLetters.csproj │ └── Program.cs ├── 07.WaterOverflow │ ├── 07.WaterOverflow.csproj │ └── Program.cs ├── 08.BeerKegs │ ├── 08.BeerKegs.csproj │ └── Program.cs ├── 09.Exercise.DataTypesAndVariables.sln ├── 09.SpiceMustFlow │ ├── 09.SpiceMustFlow.csproj │ └── Program.cs ├── 10.PokeMon │ ├── 10.PokeMon.csproj │ └── Program.cs └── 11.Snowballs │ ├── 11.Snowballs.csproj │ └── Program.cs ├── 12.Exercise.Arrays ├── 01.Train │ ├── 01.Train.csproj │ └── Program.cs ├── 02. Common Elements │ ├── 02. Common Elements.csproj │ └── Program.cs ├── 03. CSharp-Fundamentals-Arrays-Exercise.pdf ├── 03. Zig-Zag Arrays │ ├── 03. Zig-Zag Arrays.csproj │ └── Program.cs ├── 04. Array Rotation │ ├── 04. Array Rotation.csproj │ └── Program.cs ├── 05. Top Integers │ ├── 05. Top Integers.csproj │ └── Program.cs ├── 06. Equal Sum │ ├── 06. Equal Sum.csproj │ └── Program.cs ├── 07. Max Sequence of Equal Elements │ ├── 07. Max Sequence of Equal Elements.csproj │ └── Program.cs ├── 08. Magic Sum │ ├── 08. Magic Sum.csproj │ └── Program.cs ├── 09. Kamino Factory │ ├── 09. Kamino Factory.csproj │ └── Program.cs ├── 10. LadyBugs │ ├── 10. LadyBugs.csproj │ └── Program.cs └── 12.ExerciseArrays.sln ├── 15.Excercise.Methods ├── 01. Smallest of Three Numbers │ ├── 01. Smallest of Three Numbers.csproj │ └── Program.cs ├── 02. Vowels Count │ ├── 02. Vowels Count.csproj │ └── Program.cs ├── 03. Characters in Range │ ├── 03. Characters in Range.csproj │ └── Program.cs ├── 04. CSharp-Fundamentals-Methods-Exercise.pdf ├── 05. Add and Subtract │ ├── 05. Add and Subtract.csproj │ └── Program.cs ├── 06. Middle Characters │ ├── 06. Middle Characters.csproj │ └── Program.cs ├── 07. NxN Matrix │ ├── 07. NxN Matrix.csproj │ └── Program.cs ├── 08. Factorial Division │ ├── 08. Factorial Division.csproj │ └── Program.cs ├── 09. Palindrome Integers │ ├── 09. Palindrome Integers.csproj │ └── Program.cs ├── 10. Top Number │ ├── 10. Top Number.csproj │ └── Program.cs ├── 11. Array Manipulator │ ├── 11. Array Manipulator.csproj │ └── Program.cs ├── 15.Excercise.Methods.sln └── 4. Password Validator │ ├── 04. Password Validator.csproj │ ├── 4. Password Validator.csproj │ └── Program.cs ├── 18.Excercise.Lists ├── 01.Train │ ├── 01.Train.csproj │ └── Program.cs ├── 02.ChangeList │ ├── 02.ChangeList.csproj │ └── Program.cs ├── 03.HouseParty │ ├── 03.HouseParty.csproj │ └── Program.cs ├── 04.ListOperations │ ├── 04.ListOperations.csproj │ └── Program.cs ├── 05. CSharp-Fundamentals-Lists-Exercise.pdf ├── 05.BombNumbers │ ├── 05.BombNumbers.csproj │ └── Program.cs ├── 06.CardsGame │ ├── 06.CardsGame.csproj │ └── Program.cs ├── 07.AppendArrays │ ├── 07.AppendArrays.csproj │ └── Program.cs ├── 08.AnonymousThreat │ ├── 08.AnonymousThreat.csproj │ └── Program.cs ├── 09.PokemonDontGo │ ├── 09.PokemonDontGo.csproj │ └── Program.cs ├── 10.SoftUniCoursePlanning │ ├── 10.SoftUniCoursePlanning.csproj │ └── Program.cs └── 18.Excercise.Lists.sln ├── 19.ExamPreparation(12.02.24) ├── 01 │ ├── 01..csproj │ └── Program.cs ├── 02 │ ├── 02..csproj │ └── Program.cs ├── 03 │ ├── 03..csproj │ └── Program.cs ├── 19.ExamPreparation(12.02.24).sln └── Fundamentals-Mid-Exam-Preparation-Problems-Description-2.docx ├── 19.ExamPreparation(17.06.24) ├── 01.CounterStrike │ ├── 01.CounterStrike.csproj │ └── Program.cs ├── 02.TreasureHunt │ ├── 02.TreasureHunt.csproj │ └── Program.cs ├── 03.MemoryGame │ ├── 03.MemoryGame.csproj │ └── Program.cs ├── 19.ExamPreparation(17.06.24).sln └── Fundamentals-Mid-Exam-Preparation-Problems-Description-1.docx ├── 19.ExamPreparation(18.10.23) ├── 01.ComputerStore │ ├── 01.ComputerStore.csproj │ └── Program.cs ├── 02.ShootForTheWin │ ├── 02.ShootForTheWin.csproj │ └── Program.cs ├── 03.MemoryGame │ ├── 03.MemoryGame.csproj │ └── Program.cs ├── 19.ExamPreparation.sln └── Fundamentals-Mid-Exam-Preparation-Problems-Description.docx ├── 19.ExamPreparation(22.03.24) ├── 01.WorldTour │ ├── 01.WorldTour.csproj │ └── Program.cs ├── 02.MirrorWords │ ├── 02.MirrorWords.csproj │ └── Program.cs ├── 03.ThePianist │ ├── 03.ThePianist.csproj │ └── Program.cs ├── 19.ExamPreparation(20.03.24).sln └── Fundamentals-Final-Exam-Preparation-Problems-Description-2.docx ├── 19.ExamPreparation ├── 01.BonusScoringSystem │ ├── 01.BonusScoringSystem.csproj │ └── Program.cs ├── 02.ArrayModifier │ ├── 02.ArrayModifier.csproj │ └── Program.cs ├── 03.Inventory │ ├── 03.Inventory.csproj │ └── Program.cs ├── 19.ExamPreparation.sln └── Fundamentals-Mid-Exam-Preparation-Problems-Description-2.pdf ├── 20.ExamPreparation(12.02.25) ├── 01.ComputerStore │ ├── 01.BlackFlag.csproj │ └── Program.cs ├── 02. ShootForTheWin │ ├── 02. ShootForTheWin.csproj │ └── Program.cs ├── 03.MemoryGame │ ├── 03.Numbers.csproj │ └── Program.cs ├── 20.ExamPreparation(12.02.25).sln └── Fundamentals-Mid-Exam-Preparation-Problems-Description-2.docx ├── 20.ExamPreparation(16.10.24) ├── 01.ComputerStore │ ├── 01.ComputerStore.csproj │ └── Program.cs ├── 02. ShootForTheWin │ ├── 02. ShootForTheWin.csproj │ └── Program.cs ├── 03.MemoryGame │ ├── 03.MemoryGame.csproj │ └── Program.cs ├── 20.ExamPreparation(16.10.24).sln └── Fundamentals-Mid-Exam-Preparation-Problems-Description.pdf ├── 20.ExamPreparation(18.06.25) ├── 01.ComputerStore │ ├── 01.ComputerStore.csproj │ └── Program.cs ├── 02. ShootForTheWin │ ├── 02. ShootForTheWin.csproj │ └── Program.cs ├── 03.MemoryGame │ ├── 03.MemoryGame.csproj │ └── Program.cs ├── 20.ExamPreparation(18.06.25).sln └── Fundamentals-Mid-Exam-Preparation-Problems-Description.docx ├── 23.Exercise.ObjectsAndClasses ├── 01.AdvertisementMessage │ ├── 01.AdvertisementMessage.csproj │ └── Program.cs ├── 02.Articles │ ├── 02.Articles.csproj │ └── Program.cs ├── 03.Articles2.0 │ ├── 03.Articles2.0.csproj │ └── Program.cs ├── 04.Students │ ├── 04.Students.csproj │ └── Program.cs ├── 05.TeamworkProjects │ ├── 05.TeamworkProjects.csproj │ └── Program.cs ├── 06. CSharp-Fundamentals-Objects-and-Classes-Exercise.pdf ├── 06.VehicleCatalogue │ ├── 06.VehicleCatalogue.csproj │ └── Program.cs ├── 07.OrderByAge │ ├── 07.OrderByAge.csproj │ └── Program.cs └── 23.Exercise.ObjectsAndClasses.sln ├── 26.Exercise.AssociativeArrays ├── 01.CountCharsInAString │ ├── 01.CountCharsInAString.csproj │ └── Program.cs ├── 02.AMinerTask │ ├── 02.AMinerTask.csproj │ └── Program.cs ├── 03.Orders │ ├── 03.Orders.csproj │ └── Program.cs ├── 04.SoftUniParking │ ├── 04.SoftUniParking.csproj │ └── Program.cs ├── 05.Courses │ ├── 05.Courses.csproj │ └── Program.cs ├── 06.StudentAcademy │ ├── 06.StudentAcademy.csproj │ └── Program.cs ├── 07. CSharp-Fundamentals-Associative-Arrays-Exercise.pdf ├── 07.CompanyUsers │ ├── 07.CompanyUsers.csproj │ └── Program.cs └── 26.Exercise.AssociativeArrays.sln ├── 29.Exercise.StringsTextProcessing ├── 01.ValidUsernames │ ├── 01.ValidUsernames.csproj │ └── Program.cs ├── 02.CharacterMultiplier │ ├── 02.CharacterMultiplier.csproj │ └── Program.cs ├── 03.ExtractFile │ ├── 03.ExtractFile.csproj │ └── Program.cs ├── 04.CaesarCipher │ ├── 04.CaesarCipher.csproj │ └── Program.cs ├── 05.MultiplyBigNumber │ ├── 05.MultiplyBigNumber.csproj │ └── Program.cs ├── 06.ReplaceRepeatingChars │ ├── 06.ReplaceRepeatingChars.csproj │ └── Program.cs ├── 07.StringExplosion │ ├── 07.StringExplosion.csproj │ └── Program.cs ├── 08. CSharp-Fundamentals-Strings-and-Text-Processing-Exercise.pdf ├── 08.LettersChangeNumbers │ ├── 08.LettersChangeNumbers.csproj │ └── Program.cs └── 29.Exercise.StringsTextProcessing.sln ├── 31.RegularExpressions ├── 01.IsMatch │ ├── 01.IsMatch.csproj │ └── Program.cs ├── 02.Match │ ├── 02.Match.csproj │ └── Program.cs ├── 03.Matches │ ├── 03.Matches.csproj │ └── Program.cs ├── 04.Replace │ ├── 04.Replace.csproj │ └── Program.cs ├── 05.Split │ ├── 05.Split.csproj │ └── Program.cs ├── 06.MatchFullName │ ├── 06.MatchFullName.csproj │ └── Program.cs ├── 07.MatchDates │ ├── 07.MatchDates.csproj │ └── Program.cs ├── 09. CSharp-Fundamentals-Regular-Expressions-Regex.pdf └── 31.RegularExpressions.sln ├── 32.Exercise.RegularExpressions ├── 01.Furniture │ ├── 01.Furniture.csproj │ └── Program.cs ├── 02.Race │ ├── 02.Race.csproj │ └── Program.cs ├── 03.SoftUniBarIncome │ ├── 03.SoftUniBarIncome.csproj │ └── Program.cs ├── 04.StarEnigma │ ├── 04.StarEnigma.csproj │ └── Program.cs ├── 05.NetherRealms │ ├── 05.NetherRealms.csproj │ └── Program.cs ├── 06.ExtractEmails │ ├── 06.ExtractEmails.csproj │ └── Program.cs ├── 09. CSharp-Fundamentals-Regular-Expressions-Regex-Exercise.pdf ├── 09. CSharp-Fundamentals-Regular-Expressions-Regex.pdf └── 32.Exercise.RegularExpressions.sln ├── 35.ExamPreparation(24.11.23) ├── 01.ActivationKeys │ ├── 01.ActivationKeys.csproj │ └── Program.cs ├── 02.Emojidetector │ ├── 02.EmojiDetector.csproj │ └── Program.cs ├── 03.HeroesOfCodeAndLogicVII │ ├── 03.HeroesOfCodeAndLogicVII.csproj │ └── Program.cs ├── 35.ExamPreparation.sln └── Fundamentals-Final-Exam-Preparation-Problems-Description-2.docx └── 35.ExamPreparation ├── 01.PasswordReset ├── 01.PasswordReset.csproj └── Program.cs ├── 02.MirrorWords ├── 02.MirrorWords.csproj └── Program.cs ├── 03.P!rates ├── 03.P!rates.csproj └── Program.cs ├── 35.ExamPreparation.sln └── Fundamentals-Final-Exam-Preparation-Problems-Description-2.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/.gitignore -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/01-CSharp-Fundamentals-Intro-and-Basic-Syntax-Lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/01-CSharp-Fundamentals-Intro-and-Basic-Syntax-Lab.docx -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/01-CSharp-Fundamentals-Intro-and-Basic-Syntax.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/01-CSharp-Fundamentals-Intro-and-Basic-Syntax.pdf -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/01.StudentInformation/01.StudentInformation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/01.StudentInformation/01.StudentInformation.csproj -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/01.StudentInformation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/01.StudentInformation/Program.cs -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/01.Variable/01.Variable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/01.Variable/01.Variable.csproj -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/01.Variable/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/01.Variable/Program.cs -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/02.IfStatements/02.IfStatements.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/02.IfStatements/02.IfStatements.csproj -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/02.IfStatements/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/02.IfStatements/Program.cs -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/02.Passed/02.Passed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/02.Passed/02.Passed.csproj -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/02.Passed/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/02.Passed/Program.cs -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/03.ForLoops/03.ForLoops.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/03.ForLoops/03.ForLoops.csproj -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/03.ForLoops/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/03.ForLoops/Program.cs -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/03.PassedOrFailed/03.PassedOrFailed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/03.PassedOrFailed/03.PassedOrFailed.csproj -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/03.PassedOrFailed/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/03.PassedOrFailed/Program.cs -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/04.BackIn30Minutes/04.BackIn30Minutes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/04.BackIn30Minutes/04.BackIn30Minutes.csproj -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/04.BackIn30Minutes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/04.BackIn30Minutes/Program.cs -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/05.BasicSyntaxConditionalStatementsAndLoops.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/05.BasicSyntaxConditionalStatementsAndLoops.sln -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/05.MonthPrinter/05.MonthPrinter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/05.MonthPrinter/05.MonthPrinter.csproj -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/05.MonthPrinter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/05.MonthPrinter/Program.cs -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/06.ForeignLanguages/06.ForeignLanguages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/06.ForeignLanguages/06.ForeignLanguages.csproj -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/06.ForeignLanguages/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/06.ForeignLanguages/Program.cs -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/07.TheatrePromotions/07.TheatrePromotions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/07.TheatrePromotions/07.TheatrePromotions.csproj -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/07.TheatrePromotions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/07.TheatrePromotions/Program.cs -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/08.DivisibleBy3/08.DivisibleBy3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/08.DivisibleBy3/08.DivisibleBy3.csproj -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/08.DivisibleBy3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/08.DivisibleBy3/Program.cs -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/09.SumOfOddNumbers/09.SumOfOddNumbers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/09.SumOfOddNumbers/09.SumOfOddNumbers.csproj -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/09.SumOfOddNumbers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/09.SumOfOddNumbers/Program.cs -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/10.MultiplicationTable/10.MultiplicationTable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/10.MultiplicationTable/10.MultiplicationTable.csproj -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/10.MultiplicationTable/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/10.MultiplicationTable/Program.cs -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/11.MultiplicationTable2.0/11.MultiplicationTable2.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/11.MultiplicationTable2.0/11.MultiplicationTable2.0.csproj -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/11.MultiplicationTable2.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/11.MultiplicationTable2.0/Program.cs -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/12.EvenNumber/12.EvenNumber.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/12.EvenNumber/12.EvenNumber.csproj -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/12.EvenNumber/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/12.EvenNumber/Program.cs -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/13.HolidaysBetweenTwoDates/13.HolidaysBetweenTwoDates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/13.HolidaysBetweenTwoDates/13.HolidaysBetweenTwoDates.csproj -------------------------------------------------------------------------------- /05.BasicSyntaxConditionalStatementsAndLoops/13.HolidaysBetweenTwoDates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/05.BasicSyntaxConditionalStatementsAndLoops/13.HolidaysBetweenTwoDates/Program.cs -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/01. CSharp-Fundamentals-Intro-and-Basic-Syntax-Exercise.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/01. CSharp-Fundamentals-Intro-and-Basic-Syntax-Exercise.docx -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/01.Ages/01.Ages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/01.Ages/01.Ages.csproj -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/01.Ages/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/01.Ages/Program.cs -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/02.Division/02.Division.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/02.Division/02.Division.csproj -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/02.Division/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/02.Division/Program.cs -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/03. Vacation/03. Vacation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/03. Vacation/03. Vacation.csproj -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/03. Vacation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/03. Vacation/Program.cs -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/04.PrintAndSum/04.PrintAndSum.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/04.PrintAndSum/04.PrintAndSum.csproj -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/04.PrintAndSum/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/04.PrintAndSum/Program.cs -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/05.Login/05.Login.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/05.Login/05.Login.csproj -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/05.Login/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/05.Login/Program.cs -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/06.Exercise.BasicSyntaxConditionalStatementsLoops.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/06.Exercise.BasicSyntaxConditionalStatementsLoops.sln -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/06.StrongNumber/06.StrongNumber.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/06.StrongNumber/06.StrongNumber.csproj -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/06.StrongNumber/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/06.StrongNumber/Program.cs -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/07.VendingMachine/07.VendingMachine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/07.VendingMachine/07.VendingMachine.csproj -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/07.VendingMachine/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/07.VendingMachine/Program.cs -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/08.TriangleOfNumbers/08.TriangleOfNumbers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/08.TriangleOfNumbers/08.TriangleOfNumbers.csproj -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/08.TriangleOfNumbers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/08.TriangleOfNumbers/Program.cs -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/09.PadawanEquipment/09.PadawanEquipment.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/09.PadawanEquipment/09.PadawanEquipment.csproj -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/09.PadawanEquipment/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/09.PadawanEquipment/Program.cs -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/10.RageExpenses/10.RageExpenses.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/10.RageExpenses/10.RageExpenses.csproj -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/10.RageExpenses/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/10.RageExpenses/Program.cs -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/11.Orders/11.Orders.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/11.Orders/11.Orders.csproj -------------------------------------------------------------------------------- /06.Exercise.BasicSyntaxConditionalStatementsLoops/11.Orders/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/06.Exercise.BasicSyntaxConditionalStatementsLoops/11.Orders/Program.cs -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/01.IntegerOperations/01.IntegerOperations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/01.IntegerOperations/01.IntegerOperations.csproj -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/01.IntegerOperations/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/01.IntegerOperations/Program.cs -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/02. CSharp-Fundamentals-Data-Types-and-Variables-Exercise.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/02. CSharp-Fundamentals-Data-Types-and-Variables-Exercise.docx -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/02. Sum Digits/02. Sum Digits.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/02. Sum Digits/02. Sum Digits.csproj -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/02. Sum Digits/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/02. Sum Digits/Program.cs -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/03.Elevator/03.Elevator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/03.Elevator/03.Elevator.csproj -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/03.Elevator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/03.Elevator/Program.cs -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/04.SumOfChars/04.SumOfChars.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/04.SumOfChars/04.SumOfChars.csproj -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/04.SumOfChars/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/04.SumOfChars/Program.cs -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/05.PrintPartOfASCIITable/05.PrintPartOfASCIITable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/05.PrintPartOfASCIITable/05.PrintPartOfASCIITable.csproj -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/05.PrintPartOfASCIITable/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/05.PrintPartOfASCIITable/Program.cs -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/06.TriplesOfLatinLetters/06.TriplesOfLatinLetters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/06.TriplesOfLatinLetters/06.TriplesOfLatinLetters.csproj -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/06.TriplesOfLatinLetters/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/06.TriplesOfLatinLetters/Program.cs -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/07.WaterOverflow/07.WaterOverflow.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/07.WaterOverflow/07.WaterOverflow.csproj -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/07.WaterOverflow/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/07.WaterOverflow/Program.cs -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/08.BeerKegs/08.BeerKegs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/08.BeerKegs/08.BeerKegs.csproj -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/08.BeerKegs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/08.BeerKegs/Program.cs -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/09.Exercise.DataTypesAndVariables.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/09.Exercise.DataTypesAndVariables.sln -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/09.SpiceMustFlow/09.SpiceMustFlow.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/09.SpiceMustFlow/09.SpiceMustFlow.csproj -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/09.SpiceMustFlow/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/09.SpiceMustFlow/Program.cs -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/10.PokeMon/10.PokeMon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/10.PokeMon/10.PokeMon.csproj -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/10.PokeMon/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/10.PokeMon/Program.cs -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/11.Snowballs/11.Snowballs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/11.Snowballs/11.Snowballs.csproj -------------------------------------------------------------------------------- /09.Exercise.DataTypesAndVariables/11.Snowballs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/09.Exercise.DataTypesAndVariables/11.Snowballs/Program.cs -------------------------------------------------------------------------------- /12.Exercise.Arrays/01.Train/01.Train.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/01.Train/01.Train.csproj -------------------------------------------------------------------------------- /12.Exercise.Arrays/01.Train/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/01.Train/Program.cs -------------------------------------------------------------------------------- /12.Exercise.Arrays/02. Common Elements/02. Common Elements.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/02. Common Elements/02. Common Elements.csproj -------------------------------------------------------------------------------- /12.Exercise.Arrays/02. Common Elements/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/02. Common Elements/Program.cs -------------------------------------------------------------------------------- /12.Exercise.Arrays/03. CSharp-Fundamentals-Arrays-Exercise.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/03. CSharp-Fundamentals-Arrays-Exercise.pdf -------------------------------------------------------------------------------- /12.Exercise.Arrays/03. Zig-Zag Arrays/03. Zig-Zag Arrays.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/03. Zig-Zag Arrays/03. Zig-Zag Arrays.csproj -------------------------------------------------------------------------------- /12.Exercise.Arrays/03. Zig-Zag Arrays/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/03. Zig-Zag Arrays/Program.cs -------------------------------------------------------------------------------- /12.Exercise.Arrays/04. Array Rotation/04. Array Rotation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/04. Array Rotation/04. Array Rotation.csproj -------------------------------------------------------------------------------- /12.Exercise.Arrays/04. Array Rotation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/04. Array Rotation/Program.cs -------------------------------------------------------------------------------- /12.Exercise.Arrays/05. Top Integers/05. Top Integers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/05. Top Integers/05. Top Integers.csproj -------------------------------------------------------------------------------- /12.Exercise.Arrays/05. Top Integers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/05. Top Integers/Program.cs -------------------------------------------------------------------------------- /12.Exercise.Arrays/06. Equal Sum/06. Equal Sum.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/06. Equal Sum/06. Equal Sum.csproj -------------------------------------------------------------------------------- /12.Exercise.Arrays/06. Equal Sum/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/06. Equal Sum/Program.cs -------------------------------------------------------------------------------- /12.Exercise.Arrays/07. Max Sequence of Equal Elements/07. Max Sequence of Equal Elements.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/07. Max Sequence of Equal Elements/07. Max Sequence of Equal Elements.csproj -------------------------------------------------------------------------------- /12.Exercise.Arrays/07. Max Sequence of Equal Elements/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/07. Max Sequence of Equal Elements/Program.cs -------------------------------------------------------------------------------- /12.Exercise.Arrays/08. Magic Sum/08. Magic Sum.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/08. Magic Sum/08. Magic Sum.csproj -------------------------------------------------------------------------------- /12.Exercise.Arrays/08. Magic Sum/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/08. Magic Sum/Program.cs -------------------------------------------------------------------------------- /12.Exercise.Arrays/09. Kamino Factory/09. Kamino Factory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/09. Kamino Factory/09. Kamino Factory.csproj -------------------------------------------------------------------------------- /12.Exercise.Arrays/09. Kamino Factory/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/09. Kamino Factory/Program.cs -------------------------------------------------------------------------------- /12.Exercise.Arrays/10. LadyBugs/10. LadyBugs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/10. LadyBugs/10. LadyBugs.csproj -------------------------------------------------------------------------------- /12.Exercise.Arrays/10. LadyBugs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/10. LadyBugs/Program.cs -------------------------------------------------------------------------------- /12.Exercise.Arrays/12.ExerciseArrays.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/12.Exercise.Arrays/12.ExerciseArrays.sln -------------------------------------------------------------------------------- /15.Excercise.Methods/01. Smallest of Three Numbers/01. Smallest of Three Numbers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/01. Smallest of Three Numbers/01. Smallest of Three Numbers.csproj -------------------------------------------------------------------------------- /15.Excercise.Methods/01. Smallest of Three Numbers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/01. Smallest of Three Numbers/Program.cs -------------------------------------------------------------------------------- /15.Excercise.Methods/02. Vowels Count/02. Vowels Count.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/02. Vowels Count/02. Vowels Count.csproj -------------------------------------------------------------------------------- /15.Excercise.Methods/02. Vowels Count/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/02. Vowels Count/Program.cs -------------------------------------------------------------------------------- /15.Excercise.Methods/03. Characters in Range/03. Characters in Range.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/03. Characters in Range/03. Characters in Range.csproj -------------------------------------------------------------------------------- /15.Excercise.Methods/03. Characters in Range/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/03. Characters in Range/Program.cs -------------------------------------------------------------------------------- /15.Excercise.Methods/04. CSharp-Fundamentals-Methods-Exercise.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/04. CSharp-Fundamentals-Methods-Exercise.pdf -------------------------------------------------------------------------------- /15.Excercise.Methods/05. Add and Subtract/05. Add and Subtract.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/05. Add and Subtract/05. Add and Subtract.csproj -------------------------------------------------------------------------------- /15.Excercise.Methods/05. Add and Subtract/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/05. Add and Subtract/Program.cs -------------------------------------------------------------------------------- /15.Excercise.Methods/06. Middle Characters/06. Middle Characters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/06. Middle Characters/06. Middle Characters.csproj -------------------------------------------------------------------------------- /15.Excercise.Methods/06. Middle Characters/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/06. Middle Characters/Program.cs -------------------------------------------------------------------------------- /15.Excercise.Methods/07. NxN Matrix/07. NxN Matrix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/07. NxN Matrix/07. NxN Matrix.csproj -------------------------------------------------------------------------------- /15.Excercise.Methods/07. NxN Matrix/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/07. NxN Matrix/Program.cs -------------------------------------------------------------------------------- /15.Excercise.Methods/08. Factorial Division/08. Factorial Division.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/08. Factorial Division/08. Factorial Division.csproj -------------------------------------------------------------------------------- /15.Excercise.Methods/08. Factorial Division/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/08. Factorial Division/Program.cs -------------------------------------------------------------------------------- /15.Excercise.Methods/09. Palindrome Integers/09. Palindrome Integers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/09. Palindrome Integers/09. Palindrome Integers.csproj -------------------------------------------------------------------------------- /15.Excercise.Methods/09. Palindrome Integers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/09. Palindrome Integers/Program.cs -------------------------------------------------------------------------------- /15.Excercise.Methods/10. Top Number/10. Top Number.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/10. Top Number/10. Top Number.csproj -------------------------------------------------------------------------------- /15.Excercise.Methods/10. Top Number/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/10. Top Number/Program.cs -------------------------------------------------------------------------------- /15.Excercise.Methods/11. Array Manipulator/11. Array Manipulator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/11. Array Manipulator/11. Array Manipulator.csproj -------------------------------------------------------------------------------- /15.Excercise.Methods/11. Array Manipulator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/11. Array Manipulator/Program.cs -------------------------------------------------------------------------------- /15.Excercise.Methods/15.Excercise.Methods.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/15.Excercise.Methods.sln -------------------------------------------------------------------------------- /15.Excercise.Methods/4. Password Validator/04. Password Validator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/4. Password Validator/04. Password Validator.csproj -------------------------------------------------------------------------------- /15.Excercise.Methods/4. Password Validator/4. Password Validator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/4. Password Validator/4. Password Validator.csproj -------------------------------------------------------------------------------- /15.Excercise.Methods/4. Password Validator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/15.Excercise.Methods/4. Password Validator/Program.cs -------------------------------------------------------------------------------- /18.Excercise.Lists/01.Train/01.Train.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/01.Train/01.Train.csproj -------------------------------------------------------------------------------- /18.Excercise.Lists/01.Train/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/01.Train/Program.cs -------------------------------------------------------------------------------- /18.Excercise.Lists/02.ChangeList/02.ChangeList.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/02.ChangeList/02.ChangeList.csproj -------------------------------------------------------------------------------- /18.Excercise.Lists/02.ChangeList/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/02.ChangeList/Program.cs -------------------------------------------------------------------------------- /18.Excercise.Lists/03.HouseParty/03.HouseParty.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/03.HouseParty/03.HouseParty.csproj -------------------------------------------------------------------------------- /18.Excercise.Lists/03.HouseParty/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/03.HouseParty/Program.cs -------------------------------------------------------------------------------- /18.Excercise.Lists/04.ListOperations/04.ListOperations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/04.ListOperations/04.ListOperations.csproj -------------------------------------------------------------------------------- /18.Excercise.Lists/04.ListOperations/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/04.ListOperations/Program.cs -------------------------------------------------------------------------------- /18.Excercise.Lists/05. CSharp-Fundamentals-Lists-Exercise.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/05. CSharp-Fundamentals-Lists-Exercise.pdf -------------------------------------------------------------------------------- /18.Excercise.Lists/05.BombNumbers/05.BombNumbers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/05.BombNumbers/05.BombNumbers.csproj -------------------------------------------------------------------------------- /18.Excercise.Lists/05.BombNumbers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/05.BombNumbers/Program.cs -------------------------------------------------------------------------------- /18.Excercise.Lists/06.CardsGame/06.CardsGame.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/06.CardsGame/06.CardsGame.csproj -------------------------------------------------------------------------------- /18.Excercise.Lists/06.CardsGame/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/06.CardsGame/Program.cs -------------------------------------------------------------------------------- /18.Excercise.Lists/07.AppendArrays/07.AppendArrays.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/07.AppendArrays/07.AppendArrays.csproj -------------------------------------------------------------------------------- /18.Excercise.Lists/07.AppendArrays/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/07.AppendArrays/Program.cs -------------------------------------------------------------------------------- /18.Excercise.Lists/08.AnonymousThreat/08.AnonymousThreat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/08.AnonymousThreat/08.AnonymousThreat.csproj -------------------------------------------------------------------------------- /18.Excercise.Lists/08.AnonymousThreat/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/08.AnonymousThreat/Program.cs -------------------------------------------------------------------------------- /18.Excercise.Lists/09.PokemonDontGo/09.PokemonDontGo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/09.PokemonDontGo/09.PokemonDontGo.csproj -------------------------------------------------------------------------------- /18.Excercise.Lists/09.PokemonDontGo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/09.PokemonDontGo/Program.cs -------------------------------------------------------------------------------- /18.Excercise.Lists/10.SoftUniCoursePlanning/10.SoftUniCoursePlanning.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/10.SoftUniCoursePlanning/10.SoftUniCoursePlanning.csproj -------------------------------------------------------------------------------- /18.Excercise.Lists/10.SoftUniCoursePlanning/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/10.SoftUniCoursePlanning/Program.cs -------------------------------------------------------------------------------- /18.Excercise.Lists/18.Excercise.Lists.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/18.Excercise.Lists/18.Excercise.Lists.sln -------------------------------------------------------------------------------- /19.ExamPreparation(12.02.24)/01/01..csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(12.02.24)/01/01..csproj -------------------------------------------------------------------------------- /19.ExamPreparation(12.02.24)/01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(12.02.24)/01/Program.cs -------------------------------------------------------------------------------- /19.ExamPreparation(12.02.24)/02/02..csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(12.02.24)/02/02..csproj -------------------------------------------------------------------------------- /19.ExamPreparation(12.02.24)/02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(12.02.24)/02/Program.cs -------------------------------------------------------------------------------- /19.ExamPreparation(12.02.24)/03/03..csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(12.02.24)/03/03..csproj -------------------------------------------------------------------------------- /19.ExamPreparation(12.02.24)/03/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(12.02.24)/03/Program.cs -------------------------------------------------------------------------------- /19.ExamPreparation(12.02.24)/19.ExamPreparation(12.02.24).sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(12.02.24)/19.ExamPreparation(12.02.24).sln -------------------------------------------------------------------------------- /19.ExamPreparation(12.02.24)/Fundamentals-Mid-Exam-Preparation-Problems-Description-2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(12.02.24)/Fundamentals-Mid-Exam-Preparation-Problems-Description-2.docx -------------------------------------------------------------------------------- /19.ExamPreparation(17.06.24)/01.CounterStrike/01.CounterStrike.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(17.06.24)/01.CounterStrike/01.CounterStrike.csproj -------------------------------------------------------------------------------- /19.ExamPreparation(17.06.24)/01.CounterStrike/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(17.06.24)/01.CounterStrike/Program.cs -------------------------------------------------------------------------------- /19.ExamPreparation(17.06.24)/02.TreasureHunt/02.TreasureHunt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(17.06.24)/02.TreasureHunt/02.TreasureHunt.csproj -------------------------------------------------------------------------------- /19.ExamPreparation(17.06.24)/02.TreasureHunt/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(17.06.24)/02.TreasureHunt/Program.cs -------------------------------------------------------------------------------- /19.ExamPreparation(17.06.24)/03.MemoryGame/03.MemoryGame.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(17.06.24)/03.MemoryGame/03.MemoryGame.csproj -------------------------------------------------------------------------------- /19.ExamPreparation(17.06.24)/03.MemoryGame/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(17.06.24)/03.MemoryGame/Program.cs -------------------------------------------------------------------------------- /19.ExamPreparation(17.06.24)/19.ExamPreparation(17.06.24).sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(17.06.24)/19.ExamPreparation(17.06.24).sln -------------------------------------------------------------------------------- /19.ExamPreparation(17.06.24)/Fundamentals-Mid-Exam-Preparation-Problems-Description-1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(17.06.24)/Fundamentals-Mid-Exam-Preparation-Problems-Description-1.docx -------------------------------------------------------------------------------- /19.ExamPreparation(18.10.23)/01.ComputerStore/01.ComputerStore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(18.10.23)/01.ComputerStore/01.ComputerStore.csproj -------------------------------------------------------------------------------- /19.ExamPreparation(18.10.23)/01.ComputerStore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(18.10.23)/01.ComputerStore/Program.cs -------------------------------------------------------------------------------- /19.ExamPreparation(18.10.23)/02.ShootForTheWin/02.ShootForTheWin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(18.10.23)/02.ShootForTheWin/02.ShootForTheWin.csproj -------------------------------------------------------------------------------- /19.ExamPreparation(18.10.23)/02.ShootForTheWin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(18.10.23)/02.ShootForTheWin/Program.cs -------------------------------------------------------------------------------- /19.ExamPreparation(18.10.23)/03.MemoryGame/03.MemoryGame.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(18.10.23)/03.MemoryGame/03.MemoryGame.csproj -------------------------------------------------------------------------------- /19.ExamPreparation(18.10.23)/03.MemoryGame/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(18.10.23)/03.MemoryGame/Program.cs -------------------------------------------------------------------------------- /19.ExamPreparation(18.10.23)/19.ExamPreparation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(18.10.23)/19.ExamPreparation.sln -------------------------------------------------------------------------------- /19.ExamPreparation(18.10.23)/Fundamentals-Mid-Exam-Preparation-Problems-Description.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(18.10.23)/Fundamentals-Mid-Exam-Preparation-Problems-Description.docx -------------------------------------------------------------------------------- /19.ExamPreparation(22.03.24)/01.WorldTour/01.WorldTour.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(22.03.24)/01.WorldTour/01.WorldTour.csproj -------------------------------------------------------------------------------- /19.ExamPreparation(22.03.24)/01.WorldTour/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(22.03.24)/01.WorldTour/Program.cs -------------------------------------------------------------------------------- /19.ExamPreparation(22.03.24)/02.MirrorWords/02.MirrorWords.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(22.03.24)/02.MirrorWords/02.MirrorWords.csproj -------------------------------------------------------------------------------- /19.ExamPreparation(22.03.24)/02.MirrorWords/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(22.03.24)/02.MirrorWords/Program.cs -------------------------------------------------------------------------------- /19.ExamPreparation(22.03.24)/03.ThePianist/03.ThePianist.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(22.03.24)/03.ThePianist/03.ThePianist.csproj -------------------------------------------------------------------------------- /19.ExamPreparation(22.03.24)/03.ThePianist/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(22.03.24)/03.ThePianist/Program.cs -------------------------------------------------------------------------------- /19.ExamPreparation(22.03.24)/19.ExamPreparation(20.03.24).sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(22.03.24)/19.ExamPreparation(20.03.24).sln -------------------------------------------------------------------------------- /19.ExamPreparation(22.03.24)/Fundamentals-Final-Exam-Preparation-Problems-Description-2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation(22.03.24)/Fundamentals-Final-Exam-Preparation-Problems-Description-2.docx -------------------------------------------------------------------------------- /19.ExamPreparation/01.BonusScoringSystem/01.BonusScoringSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation/01.BonusScoringSystem/01.BonusScoringSystem.csproj -------------------------------------------------------------------------------- /19.ExamPreparation/01.BonusScoringSystem/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation/01.BonusScoringSystem/Program.cs -------------------------------------------------------------------------------- /19.ExamPreparation/02.ArrayModifier/02.ArrayModifier.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation/02.ArrayModifier/02.ArrayModifier.csproj -------------------------------------------------------------------------------- /19.ExamPreparation/02.ArrayModifier/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation/02.ArrayModifier/Program.cs -------------------------------------------------------------------------------- /19.ExamPreparation/03.Inventory/03.Inventory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation/03.Inventory/03.Inventory.csproj -------------------------------------------------------------------------------- /19.ExamPreparation/03.Inventory/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation/03.Inventory/Program.cs -------------------------------------------------------------------------------- /19.ExamPreparation/19.ExamPreparation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation/19.ExamPreparation.sln -------------------------------------------------------------------------------- /19.ExamPreparation/Fundamentals-Mid-Exam-Preparation-Problems-Description-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/19.ExamPreparation/Fundamentals-Mid-Exam-Preparation-Problems-Description-2.pdf -------------------------------------------------------------------------------- /20.ExamPreparation(12.02.25)/01.ComputerStore/01.BlackFlag.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(12.02.25)/01.ComputerStore/01.BlackFlag.csproj -------------------------------------------------------------------------------- /20.ExamPreparation(12.02.25)/01.ComputerStore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(12.02.25)/01.ComputerStore/Program.cs -------------------------------------------------------------------------------- /20.ExamPreparation(12.02.25)/02. ShootForTheWin/02. ShootForTheWin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(12.02.25)/02. ShootForTheWin/02. ShootForTheWin.csproj -------------------------------------------------------------------------------- /20.ExamPreparation(12.02.25)/02. ShootForTheWin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(12.02.25)/02. ShootForTheWin/Program.cs -------------------------------------------------------------------------------- /20.ExamPreparation(12.02.25)/03.MemoryGame/03.Numbers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(12.02.25)/03.MemoryGame/03.Numbers.csproj -------------------------------------------------------------------------------- /20.ExamPreparation(12.02.25)/03.MemoryGame/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(12.02.25)/03.MemoryGame/Program.cs -------------------------------------------------------------------------------- /20.ExamPreparation(12.02.25)/20.ExamPreparation(12.02.25).sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(12.02.25)/20.ExamPreparation(12.02.25).sln -------------------------------------------------------------------------------- /20.ExamPreparation(12.02.25)/Fundamentals-Mid-Exam-Preparation-Problems-Description-2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(12.02.25)/Fundamentals-Mid-Exam-Preparation-Problems-Description-2.docx -------------------------------------------------------------------------------- /20.ExamPreparation(16.10.24)/01.ComputerStore/01.ComputerStore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(16.10.24)/01.ComputerStore/01.ComputerStore.csproj -------------------------------------------------------------------------------- /20.ExamPreparation(16.10.24)/01.ComputerStore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(16.10.24)/01.ComputerStore/Program.cs -------------------------------------------------------------------------------- /20.ExamPreparation(16.10.24)/02. ShootForTheWin/02. ShootForTheWin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(16.10.24)/02. ShootForTheWin/02. ShootForTheWin.csproj -------------------------------------------------------------------------------- /20.ExamPreparation(16.10.24)/02. ShootForTheWin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(16.10.24)/02. ShootForTheWin/Program.cs -------------------------------------------------------------------------------- /20.ExamPreparation(16.10.24)/03.MemoryGame/03.MemoryGame.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(16.10.24)/03.MemoryGame/03.MemoryGame.csproj -------------------------------------------------------------------------------- /20.ExamPreparation(16.10.24)/03.MemoryGame/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(16.10.24)/03.MemoryGame/Program.cs -------------------------------------------------------------------------------- /20.ExamPreparation(16.10.24)/20.ExamPreparation(16.10.24).sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(16.10.24)/20.ExamPreparation(16.10.24).sln -------------------------------------------------------------------------------- /20.ExamPreparation(16.10.24)/Fundamentals-Mid-Exam-Preparation-Problems-Description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(16.10.24)/Fundamentals-Mid-Exam-Preparation-Problems-Description.pdf -------------------------------------------------------------------------------- /20.ExamPreparation(18.06.25)/01.ComputerStore/01.ComputerStore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(18.06.25)/01.ComputerStore/01.ComputerStore.csproj -------------------------------------------------------------------------------- /20.ExamPreparation(18.06.25)/01.ComputerStore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(18.06.25)/01.ComputerStore/Program.cs -------------------------------------------------------------------------------- /20.ExamPreparation(18.06.25)/02. ShootForTheWin/02. ShootForTheWin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(18.06.25)/02. ShootForTheWin/02. ShootForTheWin.csproj -------------------------------------------------------------------------------- /20.ExamPreparation(18.06.25)/02. ShootForTheWin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(18.06.25)/02. ShootForTheWin/Program.cs -------------------------------------------------------------------------------- /20.ExamPreparation(18.06.25)/03.MemoryGame/03.MemoryGame.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(18.06.25)/03.MemoryGame/03.MemoryGame.csproj -------------------------------------------------------------------------------- /20.ExamPreparation(18.06.25)/03.MemoryGame/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(18.06.25)/03.MemoryGame/Program.cs -------------------------------------------------------------------------------- /20.ExamPreparation(18.06.25)/20.ExamPreparation(18.06.25).sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(18.06.25)/20.ExamPreparation(18.06.25).sln -------------------------------------------------------------------------------- /20.ExamPreparation(18.06.25)/Fundamentals-Mid-Exam-Preparation-Problems-Description.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/20.ExamPreparation(18.06.25)/Fundamentals-Mid-Exam-Preparation-Problems-Description.docx -------------------------------------------------------------------------------- /23.Exercise.ObjectsAndClasses/01.AdvertisementMessage/01.AdvertisementMessage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/23.Exercise.ObjectsAndClasses/01.AdvertisementMessage/01.AdvertisementMessage.csproj -------------------------------------------------------------------------------- /23.Exercise.ObjectsAndClasses/01.AdvertisementMessage/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/23.Exercise.ObjectsAndClasses/01.AdvertisementMessage/Program.cs -------------------------------------------------------------------------------- /23.Exercise.ObjectsAndClasses/02.Articles/02.Articles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/23.Exercise.ObjectsAndClasses/02.Articles/02.Articles.csproj -------------------------------------------------------------------------------- /23.Exercise.ObjectsAndClasses/02.Articles/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/23.Exercise.ObjectsAndClasses/02.Articles/Program.cs -------------------------------------------------------------------------------- /23.Exercise.ObjectsAndClasses/03.Articles2.0/03.Articles2.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/23.Exercise.ObjectsAndClasses/03.Articles2.0/03.Articles2.0.csproj -------------------------------------------------------------------------------- /23.Exercise.ObjectsAndClasses/03.Articles2.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/23.Exercise.ObjectsAndClasses/03.Articles2.0/Program.cs -------------------------------------------------------------------------------- /23.Exercise.ObjectsAndClasses/04.Students/04.Students.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/23.Exercise.ObjectsAndClasses/04.Students/04.Students.csproj -------------------------------------------------------------------------------- /23.Exercise.ObjectsAndClasses/04.Students/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/23.Exercise.ObjectsAndClasses/04.Students/Program.cs -------------------------------------------------------------------------------- /23.Exercise.ObjectsAndClasses/05.TeamworkProjects/05.TeamworkProjects.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/23.Exercise.ObjectsAndClasses/05.TeamworkProjects/05.TeamworkProjects.csproj -------------------------------------------------------------------------------- /23.Exercise.ObjectsAndClasses/05.TeamworkProjects/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/23.Exercise.ObjectsAndClasses/05.TeamworkProjects/Program.cs -------------------------------------------------------------------------------- /23.Exercise.ObjectsAndClasses/06. CSharp-Fundamentals-Objects-and-Classes-Exercise.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/23.Exercise.ObjectsAndClasses/06. CSharp-Fundamentals-Objects-and-Classes-Exercise.pdf -------------------------------------------------------------------------------- /23.Exercise.ObjectsAndClasses/06.VehicleCatalogue/06.VehicleCatalogue.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/23.Exercise.ObjectsAndClasses/06.VehicleCatalogue/06.VehicleCatalogue.csproj -------------------------------------------------------------------------------- /23.Exercise.ObjectsAndClasses/06.VehicleCatalogue/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/23.Exercise.ObjectsAndClasses/06.VehicleCatalogue/Program.cs -------------------------------------------------------------------------------- /23.Exercise.ObjectsAndClasses/07.OrderByAge/07.OrderByAge.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/23.Exercise.ObjectsAndClasses/07.OrderByAge/07.OrderByAge.csproj -------------------------------------------------------------------------------- /23.Exercise.ObjectsAndClasses/07.OrderByAge/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/23.Exercise.ObjectsAndClasses/07.OrderByAge/Program.cs -------------------------------------------------------------------------------- /23.Exercise.ObjectsAndClasses/23.Exercise.ObjectsAndClasses.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/23.Exercise.ObjectsAndClasses/23.Exercise.ObjectsAndClasses.sln -------------------------------------------------------------------------------- /26.Exercise.AssociativeArrays/01.CountCharsInAString/01.CountCharsInAString.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/26.Exercise.AssociativeArrays/01.CountCharsInAString/01.CountCharsInAString.csproj -------------------------------------------------------------------------------- /26.Exercise.AssociativeArrays/01.CountCharsInAString/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/26.Exercise.AssociativeArrays/01.CountCharsInAString/Program.cs -------------------------------------------------------------------------------- /26.Exercise.AssociativeArrays/02.AMinerTask/02.AMinerTask.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/26.Exercise.AssociativeArrays/02.AMinerTask/02.AMinerTask.csproj -------------------------------------------------------------------------------- /26.Exercise.AssociativeArrays/02.AMinerTask/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/26.Exercise.AssociativeArrays/02.AMinerTask/Program.cs -------------------------------------------------------------------------------- /26.Exercise.AssociativeArrays/03.Orders/03.Orders.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/26.Exercise.AssociativeArrays/03.Orders/03.Orders.csproj -------------------------------------------------------------------------------- /26.Exercise.AssociativeArrays/03.Orders/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/26.Exercise.AssociativeArrays/03.Orders/Program.cs -------------------------------------------------------------------------------- /26.Exercise.AssociativeArrays/04.SoftUniParking/04.SoftUniParking.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/26.Exercise.AssociativeArrays/04.SoftUniParking/04.SoftUniParking.csproj -------------------------------------------------------------------------------- /26.Exercise.AssociativeArrays/04.SoftUniParking/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/26.Exercise.AssociativeArrays/04.SoftUniParking/Program.cs -------------------------------------------------------------------------------- /26.Exercise.AssociativeArrays/05.Courses/05.Courses.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/26.Exercise.AssociativeArrays/05.Courses/05.Courses.csproj -------------------------------------------------------------------------------- /26.Exercise.AssociativeArrays/05.Courses/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/26.Exercise.AssociativeArrays/05.Courses/Program.cs -------------------------------------------------------------------------------- /26.Exercise.AssociativeArrays/06.StudentAcademy/06.StudentAcademy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/26.Exercise.AssociativeArrays/06.StudentAcademy/06.StudentAcademy.csproj -------------------------------------------------------------------------------- /26.Exercise.AssociativeArrays/06.StudentAcademy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/26.Exercise.AssociativeArrays/06.StudentAcademy/Program.cs -------------------------------------------------------------------------------- /26.Exercise.AssociativeArrays/07. CSharp-Fundamentals-Associative-Arrays-Exercise.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/26.Exercise.AssociativeArrays/07. CSharp-Fundamentals-Associative-Arrays-Exercise.pdf -------------------------------------------------------------------------------- /26.Exercise.AssociativeArrays/07.CompanyUsers/07.CompanyUsers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/26.Exercise.AssociativeArrays/07.CompanyUsers/07.CompanyUsers.csproj -------------------------------------------------------------------------------- /26.Exercise.AssociativeArrays/07.CompanyUsers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/26.Exercise.AssociativeArrays/07.CompanyUsers/Program.cs -------------------------------------------------------------------------------- /26.Exercise.AssociativeArrays/26.Exercise.AssociativeArrays.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/26.Exercise.AssociativeArrays/26.Exercise.AssociativeArrays.sln -------------------------------------------------------------------------------- /29.Exercise.StringsTextProcessing/01.ValidUsernames/01.ValidUsernames.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/29.Exercise.StringsTextProcessing/01.ValidUsernames/01.ValidUsernames.csproj -------------------------------------------------------------------------------- /29.Exercise.StringsTextProcessing/01.ValidUsernames/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/29.Exercise.StringsTextProcessing/01.ValidUsernames/Program.cs -------------------------------------------------------------------------------- /29.Exercise.StringsTextProcessing/02.CharacterMultiplier/02.CharacterMultiplier.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/29.Exercise.StringsTextProcessing/02.CharacterMultiplier/02.CharacterMultiplier.csproj -------------------------------------------------------------------------------- /29.Exercise.StringsTextProcessing/02.CharacterMultiplier/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/29.Exercise.StringsTextProcessing/02.CharacterMultiplier/Program.cs -------------------------------------------------------------------------------- /29.Exercise.StringsTextProcessing/03.ExtractFile/03.ExtractFile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/29.Exercise.StringsTextProcessing/03.ExtractFile/03.ExtractFile.csproj -------------------------------------------------------------------------------- /29.Exercise.StringsTextProcessing/03.ExtractFile/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/29.Exercise.StringsTextProcessing/03.ExtractFile/Program.cs -------------------------------------------------------------------------------- /29.Exercise.StringsTextProcessing/04.CaesarCipher/04.CaesarCipher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/29.Exercise.StringsTextProcessing/04.CaesarCipher/04.CaesarCipher.csproj -------------------------------------------------------------------------------- /29.Exercise.StringsTextProcessing/04.CaesarCipher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/29.Exercise.StringsTextProcessing/04.CaesarCipher/Program.cs -------------------------------------------------------------------------------- /29.Exercise.StringsTextProcessing/05.MultiplyBigNumber/05.MultiplyBigNumber.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/29.Exercise.StringsTextProcessing/05.MultiplyBigNumber/05.MultiplyBigNumber.csproj -------------------------------------------------------------------------------- /29.Exercise.StringsTextProcessing/05.MultiplyBigNumber/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/29.Exercise.StringsTextProcessing/05.MultiplyBigNumber/Program.cs -------------------------------------------------------------------------------- /29.Exercise.StringsTextProcessing/06.ReplaceRepeatingChars/06.ReplaceRepeatingChars.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/29.Exercise.StringsTextProcessing/06.ReplaceRepeatingChars/06.ReplaceRepeatingChars.csproj -------------------------------------------------------------------------------- /29.Exercise.StringsTextProcessing/06.ReplaceRepeatingChars/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/29.Exercise.StringsTextProcessing/06.ReplaceRepeatingChars/Program.cs -------------------------------------------------------------------------------- /29.Exercise.StringsTextProcessing/07.StringExplosion/07.StringExplosion.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/29.Exercise.StringsTextProcessing/07.StringExplosion/07.StringExplosion.csproj -------------------------------------------------------------------------------- /29.Exercise.StringsTextProcessing/07.StringExplosion/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/29.Exercise.StringsTextProcessing/07.StringExplosion/Program.cs -------------------------------------------------------------------------------- /29.Exercise.StringsTextProcessing/08. CSharp-Fundamentals-Strings-and-Text-Processing-Exercise.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/29.Exercise.StringsTextProcessing/08. CSharp-Fundamentals-Strings-and-Text-Processing-Exercise.pdf -------------------------------------------------------------------------------- /29.Exercise.StringsTextProcessing/08.LettersChangeNumbers/08.LettersChangeNumbers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/29.Exercise.StringsTextProcessing/08.LettersChangeNumbers/08.LettersChangeNumbers.csproj -------------------------------------------------------------------------------- /29.Exercise.StringsTextProcessing/08.LettersChangeNumbers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/29.Exercise.StringsTextProcessing/08.LettersChangeNumbers/Program.cs -------------------------------------------------------------------------------- /29.Exercise.StringsTextProcessing/29.Exercise.StringsTextProcessing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/29.Exercise.StringsTextProcessing/29.Exercise.StringsTextProcessing.sln -------------------------------------------------------------------------------- /31.RegularExpressions/01.IsMatch/01.IsMatch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/31.RegularExpressions/01.IsMatch/01.IsMatch.csproj -------------------------------------------------------------------------------- /31.RegularExpressions/01.IsMatch/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/31.RegularExpressions/01.IsMatch/Program.cs -------------------------------------------------------------------------------- /31.RegularExpressions/02.Match/02.Match.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/31.RegularExpressions/02.Match/02.Match.csproj -------------------------------------------------------------------------------- /31.RegularExpressions/02.Match/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/31.RegularExpressions/02.Match/Program.cs -------------------------------------------------------------------------------- /31.RegularExpressions/03.Matches/03.Matches.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/31.RegularExpressions/03.Matches/03.Matches.csproj -------------------------------------------------------------------------------- /31.RegularExpressions/03.Matches/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/31.RegularExpressions/03.Matches/Program.cs -------------------------------------------------------------------------------- /31.RegularExpressions/04.Replace/04.Replace.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/31.RegularExpressions/04.Replace/04.Replace.csproj -------------------------------------------------------------------------------- /31.RegularExpressions/04.Replace/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/31.RegularExpressions/04.Replace/Program.cs -------------------------------------------------------------------------------- /31.RegularExpressions/05.Split/05.Split.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/31.RegularExpressions/05.Split/05.Split.csproj -------------------------------------------------------------------------------- /31.RegularExpressions/05.Split/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/31.RegularExpressions/05.Split/Program.cs -------------------------------------------------------------------------------- /31.RegularExpressions/06.MatchFullName/06.MatchFullName.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/31.RegularExpressions/06.MatchFullName/06.MatchFullName.csproj -------------------------------------------------------------------------------- /31.RegularExpressions/06.MatchFullName/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/31.RegularExpressions/06.MatchFullName/Program.cs -------------------------------------------------------------------------------- /31.RegularExpressions/07.MatchDates/07.MatchDates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/31.RegularExpressions/07.MatchDates/07.MatchDates.csproj -------------------------------------------------------------------------------- /31.RegularExpressions/07.MatchDates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/31.RegularExpressions/07.MatchDates/Program.cs -------------------------------------------------------------------------------- /31.RegularExpressions/09. CSharp-Fundamentals-Regular-Expressions-Regex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/31.RegularExpressions/09. CSharp-Fundamentals-Regular-Expressions-Regex.pdf -------------------------------------------------------------------------------- /31.RegularExpressions/31.RegularExpressions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/31.RegularExpressions/31.RegularExpressions.sln -------------------------------------------------------------------------------- /32.Exercise.RegularExpressions/01.Furniture/01.Furniture.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/32.Exercise.RegularExpressions/01.Furniture/01.Furniture.csproj -------------------------------------------------------------------------------- /32.Exercise.RegularExpressions/01.Furniture/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/32.Exercise.RegularExpressions/01.Furniture/Program.cs -------------------------------------------------------------------------------- /32.Exercise.RegularExpressions/02.Race/02.Race.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/32.Exercise.RegularExpressions/02.Race/02.Race.csproj -------------------------------------------------------------------------------- /32.Exercise.RegularExpressions/02.Race/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/32.Exercise.RegularExpressions/02.Race/Program.cs -------------------------------------------------------------------------------- /32.Exercise.RegularExpressions/03.SoftUniBarIncome/03.SoftUniBarIncome.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/32.Exercise.RegularExpressions/03.SoftUniBarIncome/03.SoftUniBarIncome.csproj -------------------------------------------------------------------------------- /32.Exercise.RegularExpressions/03.SoftUniBarIncome/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/32.Exercise.RegularExpressions/03.SoftUniBarIncome/Program.cs -------------------------------------------------------------------------------- /32.Exercise.RegularExpressions/04.StarEnigma/04.StarEnigma.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/32.Exercise.RegularExpressions/04.StarEnigma/04.StarEnigma.csproj -------------------------------------------------------------------------------- /32.Exercise.RegularExpressions/04.StarEnigma/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/32.Exercise.RegularExpressions/04.StarEnigma/Program.cs -------------------------------------------------------------------------------- /32.Exercise.RegularExpressions/05.NetherRealms/05.NetherRealms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/32.Exercise.RegularExpressions/05.NetherRealms/05.NetherRealms.csproj -------------------------------------------------------------------------------- /32.Exercise.RegularExpressions/05.NetherRealms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/32.Exercise.RegularExpressions/05.NetherRealms/Program.cs -------------------------------------------------------------------------------- /32.Exercise.RegularExpressions/06.ExtractEmails/06.ExtractEmails.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/32.Exercise.RegularExpressions/06.ExtractEmails/06.ExtractEmails.csproj -------------------------------------------------------------------------------- /32.Exercise.RegularExpressions/06.ExtractEmails/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/32.Exercise.RegularExpressions/06.ExtractEmails/Program.cs -------------------------------------------------------------------------------- /32.Exercise.RegularExpressions/09. CSharp-Fundamentals-Regular-Expressions-Regex-Exercise.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/32.Exercise.RegularExpressions/09. CSharp-Fundamentals-Regular-Expressions-Regex-Exercise.pdf -------------------------------------------------------------------------------- /32.Exercise.RegularExpressions/09. CSharp-Fundamentals-Regular-Expressions-Regex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/32.Exercise.RegularExpressions/09. CSharp-Fundamentals-Regular-Expressions-Regex.pdf -------------------------------------------------------------------------------- /32.Exercise.RegularExpressions/32.Exercise.RegularExpressions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/32.Exercise.RegularExpressions/32.Exercise.RegularExpressions.sln -------------------------------------------------------------------------------- /35.ExamPreparation(24.11.23)/01.ActivationKeys/01.ActivationKeys.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/35.ExamPreparation(24.11.23)/01.ActivationKeys/01.ActivationKeys.csproj -------------------------------------------------------------------------------- /35.ExamPreparation(24.11.23)/01.ActivationKeys/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/35.ExamPreparation(24.11.23)/01.ActivationKeys/Program.cs -------------------------------------------------------------------------------- /35.ExamPreparation(24.11.23)/02.Emojidetector/02.EmojiDetector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/35.ExamPreparation(24.11.23)/02.Emojidetector/02.EmojiDetector.csproj -------------------------------------------------------------------------------- /35.ExamPreparation(24.11.23)/02.Emojidetector/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/35.ExamPreparation(24.11.23)/02.Emojidetector/Program.cs -------------------------------------------------------------------------------- /35.ExamPreparation(24.11.23)/03.HeroesOfCodeAndLogicVII/03.HeroesOfCodeAndLogicVII.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/35.ExamPreparation(24.11.23)/03.HeroesOfCodeAndLogicVII/03.HeroesOfCodeAndLogicVII.csproj -------------------------------------------------------------------------------- /35.ExamPreparation(24.11.23)/03.HeroesOfCodeAndLogicVII/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/35.ExamPreparation(24.11.23)/03.HeroesOfCodeAndLogicVII/Program.cs -------------------------------------------------------------------------------- /35.ExamPreparation(24.11.23)/35.ExamPreparation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/35.ExamPreparation(24.11.23)/35.ExamPreparation.sln -------------------------------------------------------------------------------- /35.ExamPreparation(24.11.23)/Fundamentals-Final-Exam-Preparation-Problems-Description-2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/35.ExamPreparation(24.11.23)/Fundamentals-Final-Exam-Preparation-Problems-Description-2.docx -------------------------------------------------------------------------------- /35.ExamPreparation/01.PasswordReset/01.PasswordReset.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/35.ExamPreparation/01.PasswordReset/01.PasswordReset.csproj -------------------------------------------------------------------------------- /35.ExamPreparation/01.PasswordReset/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/35.ExamPreparation/01.PasswordReset/Program.cs -------------------------------------------------------------------------------- /35.ExamPreparation/02.MirrorWords/02.MirrorWords.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/35.ExamPreparation/02.MirrorWords/02.MirrorWords.csproj -------------------------------------------------------------------------------- /35.ExamPreparation/02.MirrorWords/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/35.ExamPreparation/02.MirrorWords/Program.cs -------------------------------------------------------------------------------- /35.ExamPreparation/03.P!rates/03.P!rates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/35.ExamPreparation/03.P!rates/03.P!rates.csproj -------------------------------------------------------------------------------- /35.ExamPreparation/03.P!rates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/35.ExamPreparation/03.P!rates/Program.cs -------------------------------------------------------------------------------- /35.ExamPreparation/35.ExamPreparation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/35.ExamPreparation/35.ExamPreparation.sln -------------------------------------------------------------------------------- /35.ExamPreparation/Fundamentals-Final-Exam-Preparation-Problems-Description-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaloyan-kasskata-Anastasov/CSharp-Fundamentals/HEAD/35.ExamPreparation/Fundamentals-Final-Exam-Preparation-Problems-Description-2.pdf --------------------------------------------------------------------------------