├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── Bonus ├── Projects │ ├── ALittleBitLINQ │ │ ├── ALittleBitLINQ.csproj │ │ ├── Expertise.cs │ │ ├── Game.cs │ │ ├── Genre.cs │ │ ├── Program.cs │ │ ├── Programmer.cs │ │ └── World.cs │ ├── CommonLib │ │ ├── CommonLib.csproj │ │ └── DeviceManager.cs │ ├── CustomAttributes │ │ ├── CustomAttributes.csproj │ │ ├── NumberRangeValidator.cs │ │ ├── Program.cs │ │ ├── StockLevel.cs │ │ └── ValidatorRuntime.cs │ ├── CustomExceptions │ │ ├── CustomExceptions.csproj │ │ └── Program.cs │ ├── CustomGenerics │ │ ├── CacheService.cs │ │ ├── CustomGenerics.csproj │ │ ├── DataContext.cs │ │ ├── Database.cs │ │ ├── Program.cs │ │ └── SmartCalc.cs │ ├── GuessGame │ │ ├── GuessGame.csproj │ │ └── Program.cs │ ├── OperatorOverloading │ │ ├── OperatorOverloading.csproj │ │ └── Program.cs │ ├── RegexSamples │ │ ├── Program.cs │ │ └── RegexSamples.csproj │ ├── UsingParams │ │ ├── Program.cs │ │ └── UsingParams.csproj │ └── UsingReflections │ │ ├── CommonLib.dll │ │ ├── Program.cs │ │ └── UsingReflections.csproj └── Readme.md ├── FinalExam └── Readme.md ├── Kanban.Client ├── Kanban.Client.csproj └── Program.cs ├── Kanban.Contract ├── IWorkItemDataContext.cs ├── IWorkItemLoader.cs ├── IWorkItemSaver.cs ├── Kanban.Contract.csproj └── SaveResponse.cs ├── Kanban.Data.Tests ├── Fakes.cs ├── Kanban.Data.Tests.csproj ├── Usings.cs └── WorkItemManagerTests.cs ├── Kanban.Data ├── CsvLoader.cs ├── CsvSaver.cs ├── JsonLoader.cs ├── JsonSaver.cs ├── Kanban.Data.csproj ├── WorkItemDto.cs └── WorkItemManager.cs ├── Kanban.Entity ├── DurationType.cs ├── Kanban.Entity.csproj ├── WorkItem.cs ├── WorkItemSize.cs └── WorkItemState.cs ├── Kanban.Extensions.Tests ├── Int32ExtensionsTests.cs ├── Kanban.Extensions.Tests.csproj ├── StringExtensionsTests.cs └── Usings.cs ├── Kanban.Extensions ├── Int32Extensions.cs ├── Kanban.Extensions.csproj └── StringExtensions.cs ├── Kanban.Runtime ├── EventHandlers.cs └── Kanban.Runtime.csproj ├── Lesson_00 ├── Projects │ ├── HelloWorld │ │ ├── HelloWorld.csproj │ │ └── Program.cs │ └── HelloWorld2 │ │ ├── HelloWorld2.csproj │ │ └── Program.cs ├── Readme.md ├── client_server.png ├── compile_runtime.png └── runtime.png ├── Lesson_01 ├── Projects │ └── ShopApp │ │ ├── Program.cs │ │ └── ShopApp.csproj ├── Readme.md ├── memory.png └── runtime.png ├── Lesson_02 ├── Projects │ └── ToDoApp │ │ ├── Program.cs │ │ └── ToDoApp.csproj ├── Readme.md ├── runtime.png └── todo_idea.png ├── Lesson_03 ├── Projects │ └── TodoApp │ │ ├── Program.cs │ │ └── TodoApp.csproj ├── Readme.md ├── interpreting.png └── runtime.png ├── Lesson_04 ├── Projects │ └── KanbanApp │ │ ├── KanbanApp.csproj │ │ └── Program.cs ├── Readme.md ├── solution_structure.png └── test_runtime.png ├── Lesson_05 ├── Projects │ └── Words │ │ ├── Program.cs │ │ ├── Word.cs │ │ ├── WordManager.cs │ │ └── Words.csproj ├── Readme.md ├── generics.png └── runtime.png ├── Lesson_06 ├── Projects │ ├── Exercise │ │ ├── Exercise.csproj │ │ └── Program.cs │ └── Playground │ │ ├── Constants.cs │ │ ├── Manager.cs │ │ ├── Playground.csproj │ │ ├── Program.cs │ │ └── WorkItem.cs ├── Readme.md └── runtime.png ├── Lesson_07 ├── Projects │ ├── UsingEvents │ │ ├── Program.cs │ │ └── UsingEvents.csproj │ └── UsingExtensions │ │ ├── Program.cs │ │ └── UsingExtensions.csproj ├── Readme.md ├── runtime_1.png └── runtime_2.png ├── Lesson_08 ├── Projects │ ├── Transformer.Tests │ │ ├── Transformer.Tests.csproj │ │ ├── UsageTests.cs │ │ └── Usings.cs │ ├── Transformer │ │ ├── GamesList.txt │ │ ├── Program.cs │ │ └── Transformer.csproj │ └── UsingFileOperations │ │ ├── Products.dat │ │ ├── Program.cs │ │ └── UsingFileOperations.csproj ├── Readme.md ├── runtime_01.png └── runtime_02.png ├── Lesson_09 ├── Projects │ └── JsonAndBson │ │ ├── convert.py │ │ └── sampledata.json ├── Readme.md └── data_types.png ├── Lesson_10 ├── Projects │ ├── Playground │ │ ├── Playground.csproj │ │ └── Program.cs │ ├── Playground2 │ │ ├── Playground2.csproj │ │ └── Program.cs │ └── Playground3 │ │ ├── Playground3.csproj │ │ └── Program.cs ├── Readme.md ├── build_failed.png ├── build_ok.png ├── playgroud2_runtime.png └── playgroud_runtime.png ├── Lesson_11 ├── Projects │ └── InheritanceLab │ │ ├── Character.cs │ │ ├── GameSchene.cs │ │ ├── Healer.cs │ │ ├── IHealable.cs │ │ ├── InheritanceLab.csproj │ │ ├── Mage.cs │ │ ├── Program.cs │ │ ├── Villager.cs │ │ ├── Warrior.cs │ │ ├── Weapon.cs │ │ └── WeaponType.cs ├── Readme.md ├── inheritance_01.png ├── inheritance_02.png └── inheritance_03.png ├── Lesson_12 ├── Projects │ └── UseArguments │ │ ├── Program.cs │ │ └── UseArguments.csproj ├── Readme.md ├── custom_attribute.png ├── custom_exception.png ├── generics.png ├── operator_overloading.png ├── reflection.png ├── reflection_design.png ├── regex_runtime.png ├── using_params.png └── xml_comment.png ├── Quiz ├── Readme.md ├── fizzbuzz_runtime.png ├── qb0001_15.png ├── qb0001_18_0.png └── qb0001_18_1.png ├── README.md └── akademi.sln /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmake.configureOnOpen": true 3 | } -------------------------------------------------------------------------------- /Bonus/Projects/ALittleBitLINQ/ALittleBitLINQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/ALittleBitLINQ/ALittleBitLINQ.csproj -------------------------------------------------------------------------------- /Bonus/Projects/ALittleBitLINQ/Expertise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/ALittleBitLINQ/Expertise.cs -------------------------------------------------------------------------------- /Bonus/Projects/ALittleBitLINQ/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/ALittleBitLINQ/Game.cs -------------------------------------------------------------------------------- /Bonus/Projects/ALittleBitLINQ/Genre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/ALittleBitLINQ/Genre.cs -------------------------------------------------------------------------------- /Bonus/Projects/ALittleBitLINQ/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/ALittleBitLINQ/Program.cs -------------------------------------------------------------------------------- /Bonus/Projects/ALittleBitLINQ/Programmer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/ALittleBitLINQ/Programmer.cs -------------------------------------------------------------------------------- /Bonus/Projects/ALittleBitLINQ/World.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/ALittleBitLINQ/World.cs -------------------------------------------------------------------------------- /Bonus/Projects/CommonLib/CommonLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/CommonLib/CommonLib.csproj -------------------------------------------------------------------------------- /Bonus/Projects/CommonLib/DeviceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/CommonLib/DeviceManager.cs -------------------------------------------------------------------------------- /Bonus/Projects/CustomAttributes/CustomAttributes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/CustomAttributes/CustomAttributes.csproj -------------------------------------------------------------------------------- /Bonus/Projects/CustomAttributes/NumberRangeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/CustomAttributes/NumberRangeValidator.cs -------------------------------------------------------------------------------- /Bonus/Projects/CustomAttributes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/CustomAttributes/Program.cs -------------------------------------------------------------------------------- /Bonus/Projects/CustomAttributes/StockLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/CustomAttributes/StockLevel.cs -------------------------------------------------------------------------------- /Bonus/Projects/CustomAttributes/ValidatorRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/CustomAttributes/ValidatorRuntime.cs -------------------------------------------------------------------------------- /Bonus/Projects/CustomExceptions/CustomExceptions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/CustomExceptions/CustomExceptions.csproj -------------------------------------------------------------------------------- /Bonus/Projects/CustomExceptions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/CustomExceptions/Program.cs -------------------------------------------------------------------------------- /Bonus/Projects/CustomGenerics/CacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/CustomGenerics/CacheService.cs -------------------------------------------------------------------------------- /Bonus/Projects/CustomGenerics/CustomGenerics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/CustomGenerics/CustomGenerics.csproj -------------------------------------------------------------------------------- /Bonus/Projects/CustomGenerics/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/CustomGenerics/DataContext.cs -------------------------------------------------------------------------------- /Bonus/Projects/CustomGenerics/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/CustomGenerics/Database.cs -------------------------------------------------------------------------------- /Bonus/Projects/CustomGenerics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/CustomGenerics/Program.cs -------------------------------------------------------------------------------- /Bonus/Projects/CustomGenerics/SmartCalc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/CustomGenerics/SmartCalc.cs -------------------------------------------------------------------------------- /Bonus/Projects/GuessGame/GuessGame.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/GuessGame/GuessGame.csproj -------------------------------------------------------------------------------- /Bonus/Projects/GuessGame/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/GuessGame/Program.cs -------------------------------------------------------------------------------- /Bonus/Projects/OperatorOverloading/OperatorOverloading.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/OperatorOverloading/OperatorOverloading.csproj -------------------------------------------------------------------------------- /Bonus/Projects/OperatorOverloading/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/OperatorOverloading/Program.cs -------------------------------------------------------------------------------- /Bonus/Projects/RegexSamples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/RegexSamples/Program.cs -------------------------------------------------------------------------------- /Bonus/Projects/RegexSamples/RegexSamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/RegexSamples/RegexSamples.csproj -------------------------------------------------------------------------------- /Bonus/Projects/UsingParams/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/UsingParams/Program.cs -------------------------------------------------------------------------------- /Bonus/Projects/UsingParams/UsingParams.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/UsingParams/UsingParams.csproj -------------------------------------------------------------------------------- /Bonus/Projects/UsingReflections/CommonLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/UsingReflections/CommonLib.dll -------------------------------------------------------------------------------- /Bonus/Projects/UsingReflections/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/UsingReflections/Program.cs -------------------------------------------------------------------------------- /Bonus/Projects/UsingReflections/UsingReflections.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Projects/UsingReflections/UsingReflections.csproj -------------------------------------------------------------------------------- /Bonus/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Bonus/Readme.md -------------------------------------------------------------------------------- /FinalExam/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/FinalExam/Readme.md -------------------------------------------------------------------------------- /Kanban.Client/Kanban.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Client/Kanban.Client.csproj -------------------------------------------------------------------------------- /Kanban.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Client/Program.cs -------------------------------------------------------------------------------- /Kanban.Contract/IWorkItemDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Contract/IWorkItemDataContext.cs -------------------------------------------------------------------------------- /Kanban.Contract/IWorkItemLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Contract/IWorkItemLoader.cs -------------------------------------------------------------------------------- /Kanban.Contract/IWorkItemSaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Contract/IWorkItemSaver.cs -------------------------------------------------------------------------------- /Kanban.Contract/Kanban.Contract.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Contract/Kanban.Contract.csproj -------------------------------------------------------------------------------- /Kanban.Contract/SaveResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Contract/SaveResponse.cs -------------------------------------------------------------------------------- /Kanban.Data.Tests/Fakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Data.Tests/Fakes.cs -------------------------------------------------------------------------------- /Kanban.Data.Tests/Kanban.Data.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Data.Tests/Kanban.Data.Tests.csproj -------------------------------------------------------------------------------- /Kanban.Data.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /Kanban.Data.Tests/WorkItemManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Data.Tests/WorkItemManagerTests.cs -------------------------------------------------------------------------------- /Kanban.Data/CsvLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Data/CsvLoader.cs -------------------------------------------------------------------------------- /Kanban.Data/CsvSaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Data/CsvSaver.cs -------------------------------------------------------------------------------- /Kanban.Data/JsonLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Data/JsonLoader.cs -------------------------------------------------------------------------------- /Kanban.Data/JsonSaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Data/JsonSaver.cs -------------------------------------------------------------------------------- /Kanban.Data/Kanban.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Data/Kanban.Data.csproj -------------------------------------------------------------------------------- /Kanban.Data/WorkItemDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Data/WorkItemDto.cs -------------------------------------------------------------------------------- /Kanban.Data/WorkItemManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Data/WorkItemManager.cs -------------------------------------------------------------------------------- /Kanban.Entity/DurationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Entity/DurationType.cs -------------------------------------------------------------------------------- /Kanban.Entity/Kanban.Entity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Entity/Kanban.Entity.csproj -------------------------------------------------------------------------------- /Kanban.Entity/WorkItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Entity/WorkItem.cs -------------------------------------------------------------------------------- /Kanban.Entity/WorkItemSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Entity/WorkItemSize.cs -------------------------------------------------------------------------------- /Kanban.Entity/WorkItemState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Entity/WorkItemState.cs -------------------------------------------------------------------------------- /Kanban.Extensions.Tests/Int32ExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Extensions.Tests/Int32ExtensionsTests.cs -------------------------------------------------------------------------------- /Kanban.Extensions.Tests/Kanban.Extensions.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Extensions.Tests/Kanban.Extensions.Tests.csproj -------------------------------------------------------------------------------- /Kanban.Extensions.Tests/StringExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Extensions.Tests/StringExtensionsTests.cs -------------------------------------------------------------------------------- /Kanban.Extensions.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /Kanban.Extensions/Int32Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Extensions/Int32Extensions.cs -------------------------------------------------------------------------------- /Kanban.Extensions/Kanban.Extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Extensions/Kanban.Extensions.csproj -------------------------------------------------------------------------------- /Kanban.Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /Kanban.Runtime/EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Runtime/EventHandlers.cs -------------------------------------------------------------------------------- /Kanban.Runtime/Kanban.Runtime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Kanban.Runtime/Kanban.Runtime.csproj -------------------------------------------------------------------------------- /Lesson_00/Projects/HelloWorld/HelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_00/Projects/HelloWorld/HelloWorld.csproj -------------------------------------------------------------------------------- /Lesson_00/Projects/HelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_00/Projects/HelloWorld/Program.cs -------------------------------------------------------------------------------- /Lesson_00/Projects/HelloWorld2/HelloWorld2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_00/Projects/HelloWorld2/HelloWorld2.csproj -------------------------------------------------------------------------------- /Lesson_00/Projects/HelloWorld2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_00/Projects/HelloWorld2/Program.cs -------------------------------------------------------------------------------- /Lesson_00/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_00/Readme.md -------------------------------------------------------------------------------- /Lesson_00/client_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_00/client_server.png -------------------------------------------------------------------------------- /Lesson_00/compile_runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_00/compile_runtime.png -------------------------------------------------------------------------------- /Lesson_00/runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_00/runtime.png -------------------------------------------------------------------------------- /Lesson_01/Projects/ShopApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_01/Projects/ShopApp/Program.cs -------------------------------------------------------------------------------- /Lesson_01/Projects/ShopApp/ShopApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_01/Projects/ShopApp/ShopApp.csproj -------------------------------------------------------------------------------- /Lesson_01/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_01/Readme.md -------------------------------------------------------------------------------- /Lesson_01/memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_01/memory.png -------------------------------------------------------------------------------- /Lesson_01/runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_01/runtime.png -------------------------------------------------------------------------------- /Lesson_02/Projects/ToDoApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_02/Projects/ToDoApp/Program.cs -------------------------------------------------------------------------------- /Lesson_02/Projects/ToDoApp/ToDoApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_02/Projects/ToDoApp/ToDoApp.csproj -------------------------------------------------------------------------------- /Lesson_02/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_02/Readme.md -------------------------------------------------------------------------------- /Lesson_02/runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_02/runtime.png -------------------------------------------------------------------------------- /Lesson_02/todo_idea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_02/todo_idea.png -------------------------------------------------------------------------------- /Lesson_03/Projects/TodoApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_03/Projects/TodoApp/Program.cs -------------------------------------------------------------------------------- /Lesson_03/Projects/TodoApp/TodoApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_03/Projects/TodoApp/TodoApp.csproj -------------------------------------------------------------------------------- /Lesson_03/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_03/Readme.md -------------------------------------------------------------------------------- /Lesson_03/interpreting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_03/interpreting.png -------------------------------------------------------------------------------- /Lesson_03/runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_03/runtime.png -------------------------------------------------------------------------------- /Lesson_04/Projects/KanbanApp/KanbanApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_04/Projects/KanbanApp/KanbanApp.csproj -------------------------------------------------------------------------------- /Lesson_04/Projects/KanbanApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_04/Projects/KanbanApp/Program.cs -------------------------------------------------------------------------------- /Lesson_04/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_04/Readme.md -------------------------------------------------------------------------------- /Lesson_04/solution_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_04/solution_structure.png -------------------------------------------------------------------------------- /Lesson_04/test_runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_04/test_runtime.png -------------------------------------------------------------------------------- /Lesson_05/Projects/Words/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_05/Projects/Words/Program.cs -------------------------------------------------------------------------------- /Lesson_05/Projects/Words/Word.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_05/Projects/Words/Word.cs -------------------------------------------------------------------------------- /Lesson_05/Projects/Words/WordManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_05/Projects/Words/WordManager.cs -------------------------------------------------------------------------------- /Lesson_05/Projects/Words/Words.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_05/Projects/Words/Words.csproj -------------------------------------------------------------------------------- /Lesson_05/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_05/Readme.md -------------------------------------------------------------------------------- /Lesson_05/generics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_05/generics.png -------------------------------------------------------------------------------- /Lesson_05/runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_05/runtime.png -------------------------------------------------------------------------------- /Lesson_06/Projects/Exercise/Exercise.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_06/Projects/Exercise/Exercise.csproj -------------------------------------------------------------------------------- /Lesson_06/Projects/Exercise/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_06/Projects/Exercise/Program.cs -------------------------------------------------------------------------------- /Lesson_06/Projects/Playground/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_06/Projects/Playground/Constants.cs -------------------------------------------------------------------------------- /Lesson_06/Projects/Playground/Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_06/Projects/Playground/Manager.cs -------------------------------------------------------------------------------- /Lesson_06/Projects/Playground/Playground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_06/Projects/Playground/Playground.csproj -------------------------------------------------------------------------------- /Lesson_06/Projects/Playground/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_06/Projects/Playground/Program.cs -------------------------------------------------------------------------------- /Lesson_06/Projects/Playground/WorkItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_06/Projects/Playground/WorkItem.cs -------------------------------------------------------------------------------- /Lesson_06/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_06/Readme.md -------------------------------------------------------------------------------- /Lesson_06/runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_06/runtime.png -------------------------------------------------------------------------------- /Lesson_07/Projects/UsingEvents/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_07/Projects/UsingEvents/Program.cs -------------------------------------------------------------------------------- /Lesson_07/Projects/UsingEvents/UsingEvents.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_07/Projects/UsingEvents/UsingEvents.csproj -------------------------------------------------------------------------------- /Lesson_07/Projects/UsingExtensions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_07/Projects/UsingExtensions/Program.cs -------------------------------------------------------------------------------- /Lesson_07/Projects/UsingExtensions/UsingExtensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_07/Projects/UsingExtensions/UsingExtensions.csproj -------------------------------------------------------------------------------- /Lesson_07/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_07/Readme.md -------------------------------------------------------------------------------- /Lesson_07/runtime_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_07/runtime_1.png -------------------------------------------------------------------------------- /Lesson_07/runtime_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_07/runtime_2.png -------------------------------------------------------------------------------- /Lesson_08/Projects/Transformer.Tests/Transformer.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_08/Projects/Transformer.Tests/Transformer.Tests.csproj -------------------------------------------------------------------------------- /Lesson_08/Projects/Transformer.Tests/UsageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_08/Projects/Transformer.Tests/UsageTests.cs -------------------------------------------------------------------------------- /Lesson_08/Projects/Transformer.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /Lesson_08/Projects/Transformer/GamesList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_08/Projects/Transformer/GamesList.txt -------------------------------------------------------------------------------- /Lesson_08/Projects/Transformer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_08/Projects/Transformer/Program.cs -------------------------------------------------------------------------------- /Lesson_08/Projects/Transformer/Transformer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_08/Projects/Transformer/Transformer.csproj -------------------------------------------------------------------------------- /Lesson_08/Projects/UsingFileOperations/Products.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_08/Projects/UsingFileOperations/Products.dat -------------------------------------------------------------------------------- /Lesson_08/Projects/UsingFileOperations/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_08/Projects/UsingFileOperations/Program.cs -------------------------------------------------------------------------------- /Lesson_08/Projects/UsingFileOperations/UsingFileOperations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_08/Projects/UsingFileOperations/UsingFileOperations.csproj -------------------------------------------------------------------------------- /Lesson_08/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_08/Readme.md -------------------------------------------------------------------------------- /Lesson_08/runtime_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_08/runtime_01.png -------------------------------------------------------------------------------- /Lesson_08/runtime_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_08/runtime_02.png -------------------------------------------------------------------------------- /Lesson_09/Projects/JsonAndBson/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_09/Projects/JsonAndBson/convert.py -------------------------------------------------------------------------------- /Lesson_09/Projects/JsonAndBson/sampledata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_09/Projects/JsonAndBson/sampledata.json -------------------------------------------------------------------------------- /Lesson_09/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_09/Readme.md -------------------------------------------------------------------------------- /Lesson_09/data_types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_09/data_types.png -------------------------------------------------------------------------------- /Lesson_10/Projects/Playground/Playground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_10/Projects/Playground/Playground.csproj -------------------------------------------------------------------------------- /Lesson_10/Projects/Playground/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_10/Projects/Playground/Program.cs -------------------------------------------------------------------------------- /Lesson_10/Projects/Playground2/Playground2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_10/Projects/Playground2/Playground2.csproj -------------------------------------------------------------------------------- /Lesson_10/Projects/Playground2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_10/Projects/Playground2/Program.cs -------------------------------------------------------------------------------- /Lesson_10/Projects/Playground3/Playground3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_10/Projects/Playground3/Playground3.csproj -------------------------------------------------------------------------------- /Lesson_10/Projects/Playground3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_10/Projects/Playground3/Program.cs -------------------------------------------------------------------------------- /Lesson_10/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_10/Readme.md -------------------------------------------------------------------------------- /Lesson_10/build_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_10/build_failed.png -------------------------------------------------------------------------------- /Lesson_10/build_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_10/build_ok.png -------------------------------------------------------------------------------- /Lesson_10/playgroud2_runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_10/playgroud2_runtime.png -------------------------------------------------------------------------------- /Lesson_10/playgroud_runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_10/playgroud_runtime.png -------------------------------------------------------------------------------- /Lesson_11/Projects/InheritanceLab/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_11/Projects/InheritanceLab/Character.cs -------------------------------------------------------------------------------- /Lesson_11/Projects/InheritanceLab/GameSchene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_11/Projects/InheritanceLab/GameSchene.cs -------------------------------------------------------------------------------- /Lesson_11/Projects/InheritanceLab/Healer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_11/Projects/InheritanceLab/Healer.cs -------------------------------------------------------------------------------- /Lesson_11/Projects/InheritanceLab/IHealable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_11/Projects/InheritanceLab/IHealable.cs -------------------------------------------------------------------------------- /Lesson_11/Projects/InheritanceLab/InheritanceLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_11/Projects/InheritanceLab/InheritanceLab.csproj -------------------------------------------------------------------------------- /Lesson_11/Projects/InheritanceLab/Mage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_11/Projects/InheritanceLab/Mage.cs -------------------------------------------------------------------------------- /Lesson_11/Projects/InheritanceLab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_11/Projects/InheritanceLab/Program.cs -------------------------------------------------------------------------------- /Lesson_11/Projects/InheritanceLab/Villager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_11/Projects/InheritanceLab/Villager.cs -------------------------------------------------------------------------------- /Lesson_11/Projects/InheritanceLab/Warrior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_11/Projects/InheritanceLab/Warrior.cs -------------------------------------------------------------------------------- /Lesson_11/Projects/InheritanceLab/Weapon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_11/Projects/InheritanceLab/Weapon.cs -------------------------------------------------------------------------------- /Lesson_11/Projects/InheritanceLab/WeaponType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_11/Projects/InheritanceLab/WeaponType.cs -------------------------------------------------------------------------------- /Lesson_11/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_11/Readme.md -------------------------------------------------------------------------------- /Lesson_11/inheritance_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_11/inheritance_01.png -------------------------------------------------------------------------------- /Lesson_11/inheritance_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_11/inheritance_02.png -------------------------------------------------------------------------------- /Lesson_11/inheritance_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_11/inheritance_03.png -------------------------------------------------------------------------------- /Lesson_12/Projects/UseArguments/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_12/Projects/UseArguments/Program.cs -------------------------------------------------------------------------------- /Lesson_12/Projects/UseArguments/UseArguments.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_12/Projects/UseArguments/UseArguments.csproj -------------------------------------------------------------------------------- /Lesson_12/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_12/Readme.md -------------------------------------------------------------------------------- /Lesson_12/custom_attribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_12/custom_attribute.png -------------------------------------------------------------------------------- /Lesson_12/custom_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_12/custom_exception.png -------------------------------------------------------------------------------- /Lesson_12/generics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_12/generics.png -------------------------------------------------------------------------------- /Lesson_12/operator_overloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_12/operator_overloading.png -------------------------------------------------------------------------------- /Lesson_12/reflection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_12/reflection.png -------------------------------------------------------------------------------- /Lesson_12/reflection_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_12/reflection_design.png -------------------------------------------------------------------------------- /Lesson_12/regex_runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_12/regex_runtime.png -------------------------------------------------------------------------------- /Lesson_12/using_params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_12/using_params.png -------------------------------------------------------------------------------- /Lesson_12/xml_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Lesson_12/xml_comment.png -------------------------------------------------------------------------------- /Quiz/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Quiz/Readme.md -------------------------------------------------------------------------------- /Quiz/fizzbuzz_runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Quiz/fizzbuzz_runtime.png -------------------------------------------------------------------------------- /Quiz/qb0001_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Quiz/qb0001_15.png -------------------------------------------------------------------------------- /Quiz/qb0001_18_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Quiz/qb0001_18_0.png -------------------------------------------------------------------------------- /Quiz/qb0001_18_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/Quiz/qb0001_18_1.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/README.md -------------------------------------------------------------------------------- /akademi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buraksenyurt/akademi/HEAD/akademi.sln --------------------------------------------------------------------------------