├── .gitattributes ├── Chars ├── .vs │ └── Chars │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── Chars.sln └── Chars │ ├── Chars.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Chars.deps.json │ │ ├── Chars.dll │ │ ├── Chars.exe │ │ ├── Chars.pdb │ │ ├── Chars.runtimeconfig.dev.json │ │ └── Chars.runtimeconfig.json │ └── obj │ ├── Chars.csproj.nuget.dgspec.json │ ├── Chars.csproj.nuget.g.props │ ├── Chars.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── Chars.AssemblyInfo.cs │ │ ├── Chars.AssemblyInfoInputs.cache │ │ ├── Chars.assets.cache │ │ ├── Chars.csproj.CoreCompileInputs.cache │ │ ├── Chars.csproj.FileListAbsolute.txt │ │ ├── Chars.csprojAssemblyReference.cache │ │ ├── Chars.dll │ │ ├── Chars.exe │ │ ├── Chars.genruntimeconfig.cache │ │ └── Chars.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── Collections_Dictionary1 ├── .vs │ └── Collections_Dictionary1 │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── Collections_Dictionary1.sln └── Collections_Dictionary1 │ ├── Collections_Dictionary1.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Collections_Dictionary1.deps.json │ │ ├── Collections_Dictionary1.dll │ │ ├── Collections_Dictionary1.exe │ │ ├── Collections_Dictionary1.pdb │ │ ├── Collections_Dictionary1.runtimeconfig.dev.json │ │ └── Collections_Dictionary1.runtimeconfig.json │ └── obj │ ├── Collections_Dictionary1.csproj.nuget.dgspec.json │ ├── Collections_Dictionary1.csproj.nuget.g.props │ ├── Collections_Dictionary1.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── Collections_Dictionary1.AssemblyInfo.cs │ │ ├── Collections_Dictionary1.AssemblyInfoInputs.cache │ │ ├── Collections_Dictionary1.assets.cache │ │ ├── Collections_Dictionary1.csproj.CoreCompileInputs.cache │ │ ├── Collections_Dictionary1.csproj.FileListAbsolute.txt │ │ ├── Collections_Dictionary1.csprojAssemblyReference.cache │ │ ├── Collections_Dictionary1.dll │ │ ├── Collections_Dictionary1.exe │ │ ├── Collections_Dictionary1.genruntimeconfig.cache │ │ └── Collections_Dictionary1.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── Collections_HashSet1 ├── .vs │ └── Collections_HashSet1 │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── Collections_HashSet1.sln └── Collections_HashSet1 │ ├── Collections_HashSet1.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Collections_HashSet1.deps.json │ │ ├── Collections_HashSet1.dll │ │ ├── Collections_HashSet1.exe │ │ ├── Collections_HashSet1.pdb │ │ ├── Collections_HashSet1.runtimeconfig.dev.json │ │ └── Collections_HashSet1.runtimeconfig.json │ └── obj │ ├── Collections_HashSet1.csproj.nuget.dgspec.json │ ├── Collections_HashSet1.csproj.nuget.g.props │ ├── Collections_HashSet1.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── Collections_HashSet1.AssemblyInfo.cs │ │ ├── Collections_HashSet1.AssemblyInfoInputs.cache │ │ ├── Collections_HashSet1.assets.cache │ │ ├── Collections_HashSet1.csproj.CoreCompileInputs.cache │ │ ├── Collections_HashSet1.csproj.FileListAbsolute.txt │ │ ├── Collections_HashSet1.dll │ │ ├── Collections_HashSet1.exe │ │ ├── Collections_HashSet1.genruntimeconfig.cache │ │ └── Collections_HashSet1.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── Collections_LinkedList1 ├── .vs │ └── Collections_LinkedList1 │ │ └── v16 │ │ └── .suo ├── Collections_LinkedList1.sln └── Collections_LinkedList1 │ ├── Collections_LinkedList1.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Collections_LinkedList1.deps.json │ │ ├── Collections_LinkedList1.dll │ │ ├── Collections_LinkedList1.exe │ │ ├── Collections_LinkedList1.pdb │ │ ├── Collections_LinkedList1.runtimeconfig.dev.json │ │ └── Collections_LinkedList1.runtimeconfig.json │ └── obj │ ├── Collections_LinkedList1.csproj.nuget.dgspec.json │ ├── Collections_LinkedList1.csproj.nuget.g.props │ ├── Collections_LinkedList1.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── Collections_LinkedList1.AssemblyInfo.cs │ │ ├── Collections_LinkedList1.AssemblyInfoInputs.cache │ │ ├── Collections_LinkedList1.assets.cache │ │ ├── Collections_LinkedList1.csproj.CoreCompileInputs.cache │ │ ├── Collections_LinkedList1.csproj.FileListAbsolute.txt │ │ ├── Collections_LinkedList1.dll │ │ ├── Collections_LinkedList1.exe │ │ ├── Collections_LinkedList1.genruntimeconfig.cache │ │ └── Collections_LinkedList1.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── Collections_List ├── .vs │ └── Collections_List │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── Collections_List.sln └── Collections_List │ ├── Collections_List.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Collections_List.deps.json │ │ ├── Collections_List.dll │ │ ├── Collections_List.exe │ │ ├── Collections_List.pdb │ │ ├── Collections_List.runtimeconfig.dev.json │ │ └── Collections_List.runtimeconfig.json │ └── obj │ ├── Collections_List.csproj.nuget.dgspec.json │ ├── Collections_List.csproj.nuget.g.props │ ├── Collections_List.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── Collections_List.AssemblyInfo.cs │ │ ├── Collections_List.AssemblyInfoInputs.cache │ │ ├── Collections_List.assets.cache │ │ ├── Collections_List.csproj.CoreCompileInputs.cache │ │ ├── Collections_List.csproj.FileListAbsolute.txt │ │ ├── Collections_List.csprojAssemblyReference.cache │ │ ├── Collections_List.dll │ │ ├── Collections_List.exe │ │ ├── Collections_List.genruntimeconfig.cache │ │ └── Collections_List.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── Collections_Queue1 ├── .vs │ └── Collections_Queue1 │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── Collections_Queue1.sln └── Collections_Queue1 │ ├── Collections_Queue1.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Collections_Queue1.deps.json │ │ ├── Collections_Queue1.dll │ │ ├── Collections_Queue1.exe │ │ ├── Collections_Queue1.pdb │ │ ├── Collections_Queue1.runtimeconfig.dev.json │ │ └── Collections_Queue1.runtimeconfig.json │ └── obj │ ├── Collections_Queue1.csproj.nuget.dgspec.json │ ├── Collections_Queue1.csproj.nuget.g.props │ ├── Collections_Queue1.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── Collections_Queue1.AssemblyInfo.cs │ │ ├── Collections_Queue1.AssemblyInfoInputs.cache │ │ ├── Collections_Queue1.assets.cache │ │ ├── Collections_Queue1.csproj.CoreCompileInputs.cache │ │ ├── Collections_Queue1.csproj.FileListAbsolute.txt │ │ ├── Collections_Queue1.dll │ │ ├── Collections_Queue1.exe │ │ ├── Collections_Queue1.genruntimeconfig.cache │ │ └── Collections_Queue1.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── Collections_SortedSet1 ├── .vs │ └── Collections_SortedSet1 │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── Collections_SortedSet1.sln └── Collections_SortedSet1 │ ├── Collections_SortedSet1.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Collections_SortedSet1.deps.json │ │ ├── Collections_SortedSet1.dll │ │ ├── Collections_SortedSet1.exe │ │ ├── Collections_SortedSet1.pdb │ │ ├── Collections_SortedSet1.runtimeconfig.dev.json │ │ └── Collections_SortedSet1.runtimeconfig.json │ └── obj │ ├── Collections_SortedSet1.csproj.nuget.dgspec.json │ ├── Collections_SortedSet1.csproj.nuget.g.props │ ├── Collections_SortedSet1.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── Collections_SortedSet1.AssemblyInfo.cs │ │ ├── Collections_SortedSet1.AssemblyInfoInputs.cache │ │ ├── Collections_SortedSet1.assets.cache │ │ ├── Collections_SortedSet1.csproj.CoreCompileInputs.cache │ │ ├── Collections_SortedSet1.csproj.FileListAbsolute.txt │ │ ├── Collections_SortedSet1.dll │ │ ├── Collections_SortedSet1.exe │ │ ├── Collections_SortedSet1.genruntimeconfig.cache │ │ └── Collections_SortedSet1.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── Collections_Sorted_Dictionary ├── .vs │ └── Collections_Sorted_Dictionary │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── Collections_Sorted_Dictionary.sln └── Collections_Sorted_Dictionary │ ├── Collections_Sorted_Dictionary.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Collections_Sorted_Dictionary.deps.json │ │ ├── Collections_Sorted_Dictionary.dll │ │ ├── Collections_Sorted_Dictionary.exe │ │ ├── Collections_Sorted_Dictionary.pdb │ │ ├── Collections_Sorted_Dictionary.runtimeconfig.dev.json │ │ └── Collections_Sorted_Dictionary.runtimeconfig.json │ └── obj │ ├── Collections_Sorted_Dictionary.csproj.nuget.dgspec.json │ ├── Collections_Sorted_Dictionary.csproj.nuget.g.props │ ├── Collections_Sorted_Dictionary.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── Collections_Sorted_Dictionary.AssemblyInfo.cs │ │ ├── Collections_Sorted_Dictionary.AssemblyInfoInputs.cache │ │ ├── Collections_Sorted_Dictionary.assets.cache │ │ ├── Collections_Sorted_Dictionary.csproj.CoreCompileInputs.cache │ │ ├── Collections_Sorted_Dictionary.csproj.FileListAbsolute.txt │ │ ├── Collections_Sorted_Dictionary.dll │ │ ├── Collections_Sorted_Dictionary.exe │ │ ├── Collections_Sorted_Dictionary.genruntimeconfig.cache │ │ └── Collections_Sorted_Dictionary.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── Collections_Sorted_List ├── .vs │ └── Collections_Sorted_List │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── Collections_Sorted_List.sln └── Collections_Sorted_List │ ├── Collections_Sorted_List.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Collections_Sorted_List.deps.json │ │ ├── Collections_Sorted_List.dll │ │ ├── Collections_Sorted_List.exe │ │ ├── Collections_Sorted_List.pdb │ │ ├── Collections_Sorted_List.runtimeconfig.dev.json │ │ └── Collections_Sorted_List.runtimeconfig.json │ └── obj │ ├── Collections_Sorted_List.csproj.nuget.dgspec.json │ ├── Collections_Sorted_List.csproj.nuget.g.props │ ├── Collections_Sorted_List.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── Collections_Sorted_List.AssemblyInfo.cs │ │ ├── Collections_Sorted_List.AssemblyInfoInputs.cache │ │ ├── Collections_Sorted_List.assets.cache │ │ ├── Collections_Sorted_List.csproj.CoreCompileInputs.cache │ │ ├── Collections_Sorted_List.csproj.FileListAbsolute.txt │ │ ├── Collections_Sorted_List.dll │ │ ├── Collections_Sorted_List.exe │ │ ├── Collections_Sorted_List.genruntimeconfig.cache │ │ └── Collections_Sorted_List.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── Collections_Stack1 ├── .vs │ └── Collections_Stack1 │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── Collections_Stack1.sln └── Collections_Stack1 │ ├── Collections_Stack1.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Collections_Stack1.deps.json │ │ ├── Collections_Stack1.dll │ │ ├── Collections_Stack1.exe │ │ ├── Collections_Stack1.pdb │ │ ├── Collections_Stack1.runtimeconfig.dev.json │ │ └── Collections_Stack1.runtimeconfig.json │ └── obj │ ├── Collections_Stack1.csproj.nuget.dgspec.json │ ├── Collections_Stack1.csproj.nuget.g.props │ ├── Collections_Stack1.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── Collections_Stack1.AssemblyInfo.cs │ │ ├── Collections_Stack1.AssemblyInfoInputs.cache │ │ ├── Collections_Stack1.assets.cache │ │ ├── Collections_Stack1.csproj.CoreCompileInputs.cache │ │ ├── Collections_Stack1.csproj.FileListAbsolute.txt │ │ ├── Collections_Stack1.dll │ │ ├── Collections_Stack1.exe │ │ ├── Collections_Stack1.genruntimeconfig.cache │ │ └── Collections_Stack1.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConditionStateIF ├── .vs │ └── ConditionStateIF │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConditionStateIF.sln └── ConditionStateIF │ ├── ConditionStateIF.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConditionStateIF.deps.json │ │ ├── ConditionStateIF.dll │ │ ├── ConditionStateIF.exe │ │ ├── ConditionStateIF.pdb │ │ ├── ConditionStateIF.runtimeconfig.dev.json │ │ └── ConditionStateIF.runtimeconfig.json │ └── obj │ ├── ConditionStateIF.csproj.nuget.dgspec.json │ ├── ConditionStateIF.csproj.nuget.g.props │ ├── ConditionStateIF.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConditionStateIF.AssemblyInfo.cs │ │ ├── ConditionStateIF.AssemblyInfoInputs.cache │ │ ├── ConditionStateIF.assets.cache │ │ ├── ConditionStateIF.csproj.CoreCompileInputs.cache │ │ ├── ConditionStateIF.csproj.FileListAbsolute.txt │ │ ├── ConditionStateIF.csprojAssemblyReference.cache │ │ ├── ConditionStateIF.dll │ │ ├── ConditionStateIF.exe │ │ ├── ConditionStateIF.genruntimeconfig.cache │ │ └── ConditionStateIF.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppAbstraction ├── .vs │ └── ConsoleAppAbstraction │ │ └── v16 │ │ └── .suo ├── ConsoleAppAbstraction.sln └── ConsoleAppAbstraction │ ├── ConsoleAppAbstraction.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppAbstraction.deps.json │ │ ├── ConsoleAppAbstraction.dll │ │ ├── ConsoleAppAbstraction.exe │ │ ├── ConsoleAppAbstraction.pdb │ │ ├── ConsoleAppAbstraction.runtimeconfig.dev.json │ │ └── ConsoleAppAbstraction.runtimeconfig.json │ └── obj │ ├── ConsoleAppAbstraction.csproj.nuget.dgspec.json │ ├── ConsoleAppAbstraction.csproj.nuget.g.props │ ├── ConsoleAppAbstraction.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppAbstraction.AssemblyInfo.cs │ │ ├── ConsoleAppAbstraction.AssemblyInfoInputs.cache │ │ ├── ConsoleAppAbstraction.assets.cache │ │ ├── ConsoleAppAbstraction.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppAbstraction.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppAbstraction.csprojAssemblyReference.cache │ │ ├── ConsoleAppAbstraction.dll │ │ ├── ConsoleAppAbstraction.exe │ │ ├── ConsoleAppAbstraction.genruntimeconfig.cache │ │ └── ConsoleAppAbstraction.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppAccessModifier ├── .vs │ └── ConsoleAppAccessModifier │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleAppAccessModifier.sln └── ConsoleAppAccessModifier │ ├── ConsoleAppAccessModifier.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppAccessModifier.deps.json │ │ ├── ConsoleAppAccessModifier.dll │ │ ├── ConsoleAppAccessModifier.exe │ │ ├── ConsoleAppAccessModifier.pdb │ │ ├── ConsoleAppAccessModifier.runtimeconfig.dev.json │ │ └── ConsoleAppAccessModifier.runtimeconfig.json │ └── obj │ ├── ConsoleAppAccessModifier.csproj.nuget.dgspec.json │ ├── ConsoleAppAccessModifier.csproj.nuget.g.props │ ├── ConsoleAppAccessModifier.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppAccessModifier.AssemblyInfo.cs │ │ ├── ConsoleAppAccessModifier.AssemblyInfoInputs.cache │ │ ├── ConsoleAppAccessModifier.assets.cache │ │ ├── ConsoleAppAccessModifier.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppAccessModifier.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppAccessModifier.csprojAssemblyReference.cache │ │ ├── ConsoleAppAccessModifier.dll │ │ ├── ConsoleAppAccessModifier.exe │ │ ├── ConsoleAppAccessModifier.genruntimeconfig.cache │ │ └── ConsoleAppAccessModifier.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppAggregation ├── .vs │ └── ConsoleAppAggregation │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleAppAggregation.sln └── ConsoleAppAggregation │ ├── ConsoleAppAggregation.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppAggregation.deps.json │ │ ├── ConsoleAppAggregation.dll │ │ ├── ConsoleAppAggregation.exe │ │ ├── ConsoleAppAggregation.pdb │ │ ├── ConsoleAppAggregation.runtimeconfig.dev.json │ │ └── ConsoleAppAggregation.runtimeconfig.json │ └── obj │ ├── ConsoleAppAggregation.csproj.nuget.dgspec.json │ ├── ConsoleAppAggregation.csproj.nuget.g.props │ ├── ConsoleAppAggregation.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppAggregation.AssemblyInfo.cs │ │ ├── ConsoleAppAggregation.AssemblyInfoInputs.cache │ │ ├── ConsoleAppAggregation.assets.cache │ │ ├── ConsoleAppAggregation.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppAggregation.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppAggregation.csprojAssemblyReference.cache │ │ ├── ConsoleAppAggregation.dll │ │ ├── ConsoleAppAggregation.exe │ │ ├── ConsoleAppAggregation.genruntimeconfig.cache │ │ └── ConsoleAppAggregation.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppArrays ├── .vs │ └── ConsoleAppArrays │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleAppArrays.sln └── ConsoleAppArrays │ ├── ConsoleAppArrays.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppArrays.deps.json │ │ ├── ConsoleAppArrays.dll │ │ ├── ConsoleAppArrays.exe │ │ ├── ConsoleAppArrays.pdb │ │ ├── ConsoleAppArrays.runtimeconfig.dev.json │ │ └── ConsoleAppArrays.runtimeconfig.json │ └── obj │ ├── ConsoleAppArrays.csproj.nuget.dgspec.json │ ├── ConsoleAppArrays.csproj.nuget.g.props │ ├── ConsoleAppArrays.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppArrays.AssemblyInfo.cs │ │ ├── ConsoleAppArrays.AssemblyInfoInputs.cache │ │ ├── ConsoleAppArrays.assets.cache │ │ ├── ConsoleAppArrays.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppArrays.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppArrays.csprojAssemblyReference.cache │ │ ├── ConsoleAppArrays.dll │ │ ├── ConsoleAppArrays.exe │ │ ├── ConsoleAppArrays.genruntimeconfig.cache │ │ └── ConsoleAppArrays.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppChecked ├── .vs │ └── ConsoleAppChecked │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleAppChecked.sln └── ConsoleAppChecked │ ├── ConsoleAppChecked.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppChecked.deps.json │ │ ├── ConsoleAppChecked.dll │ │ ├── ConsoleAppChecked.exe │ │ ├── ConsoleAppChecked.pdb │ │ ├── ConsoleAppChecked.runtimeconfig.dev.json │ │ └── ConsoleAppChecked.runtimeconfig.json │ └── obj │ ├── ConsoleAppChecked.csproj.nuget.dgspec.json │ ├── ConsoleAppChecked.csproj.nuget.g.props │ ├── ConsoleAppChecked.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppChecked.AssemblyInfo.cs │ │ ├── ConsoleAppChecked.AssemblyInfoInputs.cache │ │ ├── ConsoleAppChecked.assets.cache │ │ ├── ConsoleAppChecked.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppChecked.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppChecked.csprojAssemblyReference.cache │ │ ├── ConsoleAppChecked.dll │ │ ├── ConsoleAppChecked.exe │ │ ├── ConsoleAppChecked.genruntimeconfig.cache │ │ └── ConsoleAppChecked.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppEmployeeCon ├── .vs │ └── ConsoleAppEmployeeCon │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleAppEmployeeCon.sln └── ConsoleAppEmployeeCon │ ├── ConsoleAppEmployeeCon.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppEmployeeCon.deps.json │ │ ├── ConsoleAppEmployeeCon.dll │ │ ├── ConsoleAppEmployeeCon.exe │ │ ├── ConsoleAppEmployeeCon.pdb │ │ ├── ConsoleAppEmployeeCon.runtimeconfig.dev.json │ │ └── ConsoleAppEmployeeCon.runtimeconfig.json │ └── obj │ ├── ConsoleAppEmployeeCon.csproj.nuget.dgspec.json │ ├── ConsoleAppEmployeeCon.csproj.nuget.g.props │ ├── ConsoleAppEmployeeCon.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppEmployeeCon.AssemblyInfo.cs │ │ ├── ConsoleAppEmployeeCon.AssemblyInfoInputs.cache │ │ ├── ConsoleAppEmployeeCon.assets.cache │ │ ├── ConsoleAppEmployeeCon.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppEmployeeCon.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppEmployeeCon.csprojAssemblyReference.cache │ │ ├── ConsoleAppEmployeeCon.dll │ │ ├── ConsoleAppEmployeeCon.exe │ │ ├── ConsoleAppEmployeeCon.genruntimeconfig.cache │ │ └── ConsoleAppEmployeeCon.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppEncapsulation ├── .vs │ └── ConsoleAppEncapsulation │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleAppEncapsulation.sln └── ConsoleAppEncapsulation │ ├── ConsoleAppEncapsulation.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppEncapsulation.deps.json │ │ ├── ConsoleAppEncapsulation.dll │ │ ├── ConsoleAppEncapsulation.exe │ │ ├── ConsoleAppEncapsulation.pdb │ │ ├── ConsoleAppEncapsulation.runtimeconfig.dev.json │ │ └── ConsoleAppEncapsulation.runtimeconfig.json │ └── obj │ ├── ConsoleAppEncapsulation.csproj.nuget.dgspec.json │ ├── ConsoleAppEncapsulation.csproj.nuget.g.props │ ├── ConsoleAppEncapsulation.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppEncapsulation.AssemblyInfo.cs │ │ ├── ConsoleAppEncapsulation.AssemblyInfoInputs.cache │ │ ├── ConsoleAppEncapsulation.assets.cache │ │ ├── ConsoleAppEncapsulation.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppEncapsulation.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppEncapsulation.csprojAssemblyReference.cache │ │ ├── ConsoleAppEncapsulation.dll │ │ ├── ConsoleAppEncapsulation.exe │ │ ├── ConsoleAppEncapsulation.genruntimeconfig.cache │ │ └── ConsoleAppEncapsulation.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppException ├── .vs │ └── ConsoleAppException │ │ └── v16 │ │ └── .suo ├── ConsoleAppException.sln └── ConsoleAppException │ ├── ConsoleAppException.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppException.deps.json │ │ ├── ConsoleAppException.dll │ │ ├── ConsoleAppException.exe │ │ ├── ConsoleAppException.pdb │ │ ├── ConsoleAppException.runtimeconfig.dev.json │ │ └── ConsoleAppException.runtimeconfig.json │ └── obj │ ├── ConsoleAppException.csproj.nuget.dgspec.json │ ├── ConsoleAppException.csproj.nuget.g.props │ ├── ConsoleAppException.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppException.AssemblyInfo.cs │ │ ├── ConsoleAppException.AssemblyInfoInputs.cache │ │ ├── ConsoleAppException.assets.cache │ │ ├── ConsoleAppException.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppException.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppException.csprojAssemblyReference.cache │ │ ├── ConsoleAppException.dll │ │ ├── ConsoleAppException.exe │ │ ├── ConsoleAppException.genruntimeconfig.cache │ │ └── ConsoleAppException.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppFunctions ├── .vs │ └── ConsoleAppFunctions │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleAppFunctions.sln └── ConsoleAppFunctions │ ├── ConsoleAppFunctions.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppFunctions.deps.json │ │ ├── ConsoleAppFunctions.dll │ │ ├── ConsoleAppFunctions.exe │ │ ├── ConsoleAppFunctions.pdb │ │ ├── ConsoleAppFunctions.runtimeconfig.dev.json │ │ └── ConsoleAppFunctions.runtimeconfig.json │ └── obj │ ├── ConsoleAppFunctions.csproj.nuget.dgspec.json │ ├── ConsoleAppFunctions.csproj.nuget.g.props │ ├── ConsoleAppFunctions.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppFunctions.AssemblyInfo.cs │ │ ├── ConsoleAppFunctions.AssemblyInfoInputs.cache │ │ ├── ConsoleAppFunctions.assets.cache │ │ ├── ConsoleAppFunctions.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppFunctions.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppFunctions.csprojAssemblyReference.cache │ │ ├── ConsoleAppFunctions.dll │ │ ├── ConsoleAppFunctions.exe │ │ ├── ConsoleAppFunctions.genruntimeconfig.cache │ │ └── ConsoleAppFunctions.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppInheritance ├── .vs │ └── ConsoleAppInheritance │ │ └── v16 │ │ └── .suo ├── ConsoleAppInheritance.sln └── ConsoleAppInheritance │ ├── ConsoleAppInheritance.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppInheritance.deps.json │ │ ├── ConsoleAppInheritance.dll │ │ ├── ConsoleAppInheritance.exe │ │ ├── ConsoleAppInheritance.pdb │ │ ├── ConsoleAppInheritance.runtimeconfig.dev.json │ │ └── ConsoleAppInheritance.runtimeconfig.json │ └── obj │ ├── ConsoleAppInheritance.csproj.nuget.dgspec.json │ ├── ConsoleAppInheritance.csproj.nuget.g.props │ ├── ConsoleAppInheritance.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppInheritance.AssemblyInfo.cs │ │ ├── ConsoleAppInheritance.AssemblyInfoInputs.cache │ │ ├── ConsoleAppInheritance.assets.cache │ │ ├── ConsoleAppInheritance.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppInheritance.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppInheritance.csprojAssemblyReference.cache │ │ ├── ConsoleAppInheritance.dll │ │ ├── ConsoleAppInheritance.exe │ │ ├── ConsoleAppInheritance.genruntimeconfig.cache │ │ └── ConsoleAppInheritance.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppInterface ├── .vs │ └── ConsoleAppInterface │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleAppInterface.sln └── ConsoleAppInterface │ ├── ConsoleAppInterface.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppInterface.deps.json │ │ ├── ConsoleAppInterface.dll │ │ ├── ConsoleAppInterface.exe │ │ ├── ConsoleAppInterface.pdb │ │ ├── ConsoleAppInterface.runtimeconfig.dev.json │ │ └── ConsoleAppInterface.runtimeconfig.json │ └── obj │ ├── ConsoleAppInterface.csproj.nuget.dgspec.json │ ├── ConsoleAppInterface.csproj.nuget.g.props │ ├── ConsoleAppInterface.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppInterface.AssemblyInfo.cs │ │ ├── ConsoleAppInterface.AssemblyInfoInputs.cache │ │ ├── ConsoleAppInterface.assets.cache │ │ ├── ConsoleAppInterface.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppInterface.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppInterface.csprojAssemblyReference.cache │ │ ├── ConsoleAppInterface.dll │ │ ├── ConsoleAppInterface.exe │ │ ├── ConsoleAppInterface.genruntimeconfig.cache │ │ └── ConsoleAppInterface.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppNameSpace ├── .vs │ └── ConsoleAppNameSpace │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleAppNameSpace.sln └── ConsoleAppNameSpace │ ├── ConsoleAppNameSpace.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppNameSpace.deps.json │ │ ├── ConsoleAppNameSpace.dll │ │ ├── ConsoleAppNameSpace.exe │ │ ├── ConsoleAppNameSpace.pdb │ │ ├── ConsoleAppNameSpace.runtimeconfig.dev.json │ │ └── ConsoleAppNameSpace.runtimeconfig.json │ └── obj │ ├── ConsoleAppNameSpace.csproj.nuget.dgspec.json │ ├── ConsoleAppNameSpace.csproj.nuget.g.props │ ├── ConsoleAppNameSpace.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppNameSpace.AssemblyInfo.cs │ │ ├── ConsoleAppNameSpace.AssemblyInfoInputs.cache │ │ ├── ConsoleAppNameSpace.assets.cache │ │ ├── ConsoleAppNameSpace.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppNameSpace.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppNameSpace.dll │ │ ├── ConsoleAppNameSpace.exe │ │ ├── ConsoleAppNameSpace.genruntimeconfig.cache │ │ └── ConsoleAppNameSpace.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppOOP ├── .vs │ └── ConsoleAppOOP │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleAppOOP.sln └── ConsoleAppOOP │ ├── ConsoleAppOOP.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppOOP.deps.json │ │ ├── ConsoleAppOOP.dll │ │ ├── ConsoleAppOOP.exe │ │ ├── ConsoleAppOOP.pdb │ │ ├── ConsoleAppOOP.runtimeconfig.dev.json │ │ └── ConsoleAppOOP.runtimeconfig.json │ └── obj │ ├── ConsoleAppOOP.csproj.nuget.dgspec.json │ ├── ConsoleAppOOP.csproj.nuget.g.props │ ├── ConsoleAppOOP.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppOOP.AssemblyInfo.cs │ │ ├── ConsoleAppOOP.AssemblyInfoInputs.cache │ │ ├── ConsoleAppOOP.assets.cache │ │ ├── ConsoleAppOOP.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppOOP.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppOOP.csprojAssemblyReference.cache │ │ ├── ConsoleAppOOP.dll │ │ ├── ConsoleAppOOP.exe │ │ ├── ConsoleAppOOP.genruntimeconfig.cache │ │ └── ConsoleAppOOP.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppOverLoading ├── .vs │ └── ConsoleAppOverLoading │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleAppOverLoading.sln └── ConsoleAppOverLoading │ ├── ConsoleAppOverLoading.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppOverLoading.deps.json │ │ ├── ConsoleAppOverLoading.dll │ │ ├── ConsoleAppOverLoading.exe │ │ ├── ConsoleAppOverLoading.pdb │ │ ├── ConsoleAppOverLoading.runtimeconfig.dev.json │ │ └── ConsoleAppOverLoading.runtimeconfig.json │ └── obj │ ├── ConsoleAppOverLoading.csproj.nuget.dgspec.json │ ├── ConsoleAppOverLoading.csproj.nuget.g.props │ ├── ConsoleAppOverLoading.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppOverLoading.AssemblyInfo.cs │ │ ├── ConsoleAppOverLoading.AssemblyInfoInputs.cache │ │ ├── ConsoleAppOverLoading.assets.cache │ │ ├── ConsoleAppOverLoading.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppOverLoading.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppOverLoading.csprojAssemblyReference.cache │ │ ├── ConsoleAppOverLoading.dll │ │ ├── ConsoleAppOverLoading.exe │ │ ├── ConsoleAppOverLoading.genruntimeconfig.cache │ │ └── ConsoleAppOverLoading.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppOverriding ├── .vs │ └── ConsoleAppOverriding │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleAppOverriding.sln └── ConsoleAppOverriding │ ├── ConsoleAppOverriding.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppOverriding.deps.json │ │ ├── ConsoleAppOverriding.dll │ │ ├── ConsoleAppOverriding.exe │ │ ├── ConsoleAppOverriding.pdb │ │ ├── ConsoleAppOverriding.runtimeconfig.dev.json │ │ └── ConsoleAppOverriding.runtimeconfig.json │ └── obj │ ├── ConsoleAppOverriding.csproj.nuget.dgspec.json │ ├── ConsoleAppOverriding.csproj.nuget.g.props │ ├── ConsoleAppOverriding.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppOverriding.AssemblyInfo.cs │ │ ├── ConsoleAppOverriding.AssemblyInfoInputs.cache │ │ ├── ConsoleAppOverriding.assets.cache │ │ ├── ConsoleAppOverriding.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppOverriding.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppOverriding.csprojAssemblyReference.cache │ │ ├── ConsoleAppOverriding.dll │ │ ├── ConsoleAppOverriding.exe │ │ ├── ConsoleAppOverriding.genruntimeconfig.cache │ │ └── ConsoleAppOverriding.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppPolymorphisim ├── .vs │ └── ConsoleAppPolymorphisim │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleAppPolymorphisim.sln └── ConsoleAppPolymorphisim │ ├── ConsoleAppPolymorphisim.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppPolymorphisim.deps.json │ │ ├── ConsoleAppPolymorphisim.dll │ │ ├── ConsoleAppPolymorphisim.exe │ │ ├── ConsoleAppPolymorphisim.pdb │ │ ├── ConsoleAppPolymorphisim.runtimeconfig.dev.json │ │ └── ConsoleAppPolymorphisim.runtimeconfig.json │ └── obj │ ├── ConsoleAppPolymorphisim.csproj.nuget.dgspec.json │ ├── ConsoleAppPolymorphisim.csproj.nuget.g.props │ ├── ConsoleAppPolymorphisim.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppPolymorphisim.AssemblyInfo.cs │ │ ├── ConsoleAppPolymorphisim.AssemblyInfoInputs.cache │ │ ├── ConsoleAppPolymorphisim.assets.cache │ │ ├── ConsoleAppPolymorphisim.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppPolymorphisim.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppPolymorphisim.csprojAssemblyReference.cache │ │ ├── ConsoleAppPolymorphisim.dll │ │ ├── ConsoleAppPolymorphisim.exe │ │ ├── ConsoleAppPolymorphisim.genruntimeconfig.cache │ │ └── ConsoleAppPolymorphisim.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppSealed ├── .vs │ └── ConsoleAppSealed │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleAppSealed.sln └── ConsoleAppSealed │ ├── ConsoleAppSealed.csproj │ ├── Program.cs │ └── obj │ ├── ConsoleAppSealed.csproj.nuget.dgspec.json │ ├── ConsoleAppSealed.csproj.nuget.g.props │ ├── ConsoleAppSealed.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppSealed.AssemblyInfo.cs │ │ ├── ConsoleAppSealed.AssemblyInfoInputs.cache │ │ ├── ConsoleAppSealed.assets.cache │ │ ├── ConsoleAppSealed.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppSealed.csproj.FileListAbsolute.txt │ │ └── ConsoleAppSealed.csprojAssemblyReference.cache │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppStaticKeyword ├── .vs │ └── ConsoleAppStaticKeyword │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleAppStaticKeyword.sln └── ConsoleAppStaticKeyword │ ├── ConsoleAppStaticKeyword.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppStaticKeyword.deps.json │ │ ├── ConsoleAppStaticKeyword.dll │ │ ├── ConsoleAppStaticKeyword.exe │ │ ├── ConsoleAppStaticKeyword.pdb │ │ ├── ConsoleAppStaticKeyword.runtimeconfig.dev.json │ │ └── ConsoleAppStaticKeyword.runtimeconfig.json │ └── obj │ ├── ConsoleAppStaticKeyword.csproj.nuget.dgspec.json │ ├── ConsoleAppStaticKeyword.csproj.nuget.g.props │ ├── ConsoleAppStaticKeyword.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppStaticKeyword.AssemblyInfo.cs │ │ ├── ConsoleAppStaticKeyword.AssemblyInfoInputs.cache │ │ ├── ConsoleAppStaticKeyword.assets.cache │ │ ├── ConsoleAppStaticKeyword.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppStaticKeyword.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppStaticKeyword.csprojAssemblyReference.cache │ │ ├── ConsoleAppStaticKeyword.dll │ │ ├── ConsoleAppStaticKeyword.exe │ │ ├── ConsoleAppStaticKeyword.genruntimeconfig.cache │ │ └── ConsoleAppStaticKeyword.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppStruct ├── .vs │ └── ConsoleAppStruct │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleAppStruct.sln └── ConsoleAppStruct │ ├── ConsoleAppStruct.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppStruct.deps.json │ │ ├── ConsoleAppStruct.dll │ │ ├── ConsoleAppStruct.exe │ │ ├── ConsoleAppStruct.pdb │ │ ├── ConsoleAppStruct.runtimeconfig.dev.json │ │ └── ConsoleAppStruct.runtimeconfig.json │ └── obj │ ├── ConsoleAppStruct.csproj.nuget.dgspec.json │ ├── ConsoleAppStruct.csproj.nuget.g.props │ ├── ConsoleAppStruct.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppStruct.AssemblyInfo.cs │ │ ├── ConsoleAppStruct.AssemblyInfoInputs.cache │ │ ├── ConsoleAppStruct.assets.cache │ │ ├── ConsoleAppStruct.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppStruct.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppStruct.dll │ │ ├── ConsoleAppStruct.exe │ │ ├── ConsoleAppStruct.genruntimeconfig.cache │ │ └── ConsoleAppStruct.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleAppSysException ├── .vs │ └── ConsoleAppSysException │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleAppSysException.sln └── ConsoleAppSysException │ ├── ConsoleAppSysException.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleAppSysException.deps.json │ │ ├── ConsoleAppSysException.dll │ │ ├── ConsoleAppSysException.exe │ │ ├── ConsoleAppSysException.pdb │ │ ├── ConsoleAppSysException.runtimeconfig.dev.json │ │ └── ConsoleAppSysException.runtimeconfig.json │ └── obj │ ├── ConsoleAppSysException.csproj.nuget.dgspec.json │ ├── ConsoleAppSysException.csproj.nuget.g.props │ ├── ConsoleAppSysException.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleAppSysException.AssemblyInfo.cs │ │ ├── ConsoleAppSysException.AssemblyInfoInputs.cache │ │ ├── ConsoleAppSysException.assets.cache │ │ ├── ConsoleAppSysException.csproj.CoreCompileInputs.cache │ │ ├── ConsoleAppSysException.csproj.FileListAbsolute.txt │ │ ├── ConsoleAppSysException.dll │ │ ├── ConsoleAppSysException.exe │ │ ├── ConsoleAppSysException.genruntimeconfig.cache │ │ └── ConsoleAppSysException.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleCallByValue ├── .vs │ └── ConsoleCallByValue │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleCallByValue.sln └── ConsoleCallByValue │ ├── ConsoleCallByValue.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleCallByValue.deps.json │ │ ├── ConsoleCallByValue.dll │ │ ├── ConsoleCallByValue.exe │ │ ├── ConsoleCallByValue.pdb │ │ ├── ConsoleCallByValue.runtimeconfig.dev.json │ │ └── ConsoleCallByValue.runtimeconfig.json │ └── obj │ ├── ConsoleCallByValue.csproj.nuget.dgspec.json │ ├── ConsoleCallByValue.csproj.nuget.g.props │ ├── ConsoleCallByValue.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleCallByValue.AssemblyInfo.cs │ │ ├── ConsoleCallByValue.AssemblyInfoInputs.cache │ │ ├── ConsoleCallByValue.assets.cache │ │ ├── ConsoleCallByValue.csproj.CoreCompileInputs.cache │ │ ├── ConsoleCallByValue.csproj.FileListAbsolute.txt │ │ ├── ConsoleCallByValue.csprojAssemblyReference.cache │ │ ├── ConsoleCallByValue.dll │ │ ├── ConsoleCallByValue.exe │ │ ├── ConsoleCallByValue.genruntimeconfig.cache │ │ └── ConsoleCallByValue.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleForeachLoop ├── .vs │ └── ConsoleForeachLoop │ │ └── v16 │ │ └── .suo ├── ConsoleForeachLoop.sln └── ConsoleForeachLoop │ ├── ConsoleForeachLoop.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleForeachLoop.deps.json │ │ ├── ConsoleForeachLoop.dll │ │ ├── ConsoleForeachLoop.exe │ │ ├── ConsoleForeachLoop.pdb │ │ ├── ConsoleForeachLoop.runtimeconfig.dev.json │ │ └── ConsoleForeachLoop.runtimeconfig.json │ └── obj │ ├── ConsoleForeachLoop.csproj.nuget.dgspec.json │ ├── ConsoleForeachLoop.csproj.nuget.g.props │ ├── ConsoleForeachLoop.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleForeachLoop.AssemblyInfo.cs │ │ ├── ConsoleForeachLoop.AssemblyInfoInputs.cache │ │ ├── ConsoleForeachLoop.assets.cache │ │ ├── ConsoleForeachLoop.csproj.CoreCompileInputs.cache │ │ ├── ConsoleForeachLoop.csproj.FileListAbsolute.txt │ │ ├── ConsoleForeachLoop.csprojAssemblyReference.cache │ │ ├── ConsoleForeachLoop.dll │ │ ├── ConsoleForeachLoop.exe │ │ ├── ConsoleForeachLoop.genruntimeconfig.cache │ │ └── ConsoleForeachLoop.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── ConsoleWhileLoop ├── .vs │ └── ConsoleWhileLoop │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ConsoleWhileLoop.sln └── ConsoleWhileLoop │ ├── ConsoleWhileLoop.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ConsoleWhileLoop.deps.json │ │ ├── ConsoleWhileLoop.dll │ │ ├── ConsoleWhileLoop.exe │ │ ├── ConsoleWhileLoop.pdb │ │ ├── ConsoleWhileLoop.runtimeconfig.dev.json │ │ └── ConsoleWhileLoop.runtimeconfig.json │ └── obj │ ├── ConsoleWhileLoop.csproj.nuget.dgspec.json │ ├── ConsoleWhileLoop.csproj.nuget.g.props │ ├── ConsoleWhileLoop.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ConsoleWhileLoop.AssemblyInfo.cs │ │ ├── ConsoleWhileLoop.AssemblyInfoInputs.cache │ │ ├── ConsoleWhileLoop.assets.cache │ │ ├── ConsoleWhileLoop.csproj.CoreCompileInputs.cache │ │ ├── ConsoleWhileLoop.csproj.FileListAbsolute.txt │ │ ├── ConsoleWhileLoop.dll │ │ ├── ConsoleWhileLoop.exe │ │ ├── ConsoleWhileLoop.genruntimeconfig.cache │ │ └── ConsoleWhileLoop.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── CsharpMultithreading ├── .vs │ └── CsharpMultithreading │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── CsharpMultithreading.sln └── CsharpMultithreading │ ├── CsharpMultithreading.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── CsharpMultithreading.deps.json │ │ ├── CsharpMultithreading.dll │ │ ├── CsharpMultithreading.exe │ │ ├── CsharpMultithreading.pdb │ │ ├── CsharpMultithreading.runtimeconfig.dev.json │ │ └── CsharpMultithreading.runtimeconfig.json │ └── obj │ ├── CsharpMultithreading.csproj.nuget.dgspec.json │ ├── CsharpMultithreading.csproj.nuget.g.props │ ├── CsharpMultithreading.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── CsharpMultithreading.AssemblyInfo.cs │ │ ├── CsharpMultithreading.AssemblyInfoInputs.cache │ │ ├── CsharpMultithreading.assets.cache │ │ ├── CsharpMultithreading.csproj.CoreCompileInputs.cache │ │ ├── CsharpMultithreading.csproj.FileListAbsolute.txt │ │ ├── CsharpMultithreading.csprojAssemblyReference.cache │ │ ├── CsharpMultithreading.dll │ │ ├── CsharpMultithreading.exe │ │ ├── CsharpMultithreading.genruntimeconfig.cache │ │ └── CsharpMultithreading.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── DateAndTime ├── .vs │ └── DateAndTime │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── DateAndTime.sln └── DateAndTime │ ├── DateAndTime.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── DateAndTime.deps.json │ │ ├── DateAndTime.dll │ │ ├── DateAndTime.exe │ │ ├── DateAndTime.pdb │ │ ├── DateAndTime.runtimeconfig.dev.json │ │ └── DateAndTime.runtimeconfig.json │ └── obj │ ├── DateAndTime.csproj.nuget.dgspec.json │ ├── DateAndTime.csproj.nuget.g.props │ ├── DateAndTime.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── DateAndTime.AssemblyInfo.cs │ │ ├── DateAndTime.AssemblyInfoInputs.cache │ │ ├── DateAndTime.assets.cache │ │ ├── DateAndTime.csproj.CoreCompileInputs.cache │ │ ├── DateAndTime.csproj.FileListAbsolute.txt │ │ ├── DateAndTime.dll │ │ ├── DateAndTime.exe │ │ ├── DateAndTime.genruntimeconfig.cache │ │ └── DateAndTime.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── Emplyees Database ├── .vs │ └── Emplyees Database │ │ └── v16 │ │ └── .suo ├── Emplyees Database.sln └── Emplyees Database │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Employee.cs │ ├── EmployeeRepository.cs │ ├── Emplyees Database.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── bin │ └── Debug │ │ ├── Emplyees Database.exe │ │ ├── Emplyees Database.exe.config │ │ └── Emplyees Database.pdb │ └── obj │ └── Debug │ ├── App.g.cs │ ├── App.g.i.cs │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── Emplyees Database.csproj.CoreCompileInputs.cache │ ├── Emplyees Database.csproj.FileListAbsolute.txt │ ├── Emplyees Database.csproj.GenerateResource.cache │ ├── Emplyees Database.csprojAssemblyReference.cache │ ├── Emplyees Database.exe │ ├── Emplyees Database.g.resources │ ├── Emplyees Database.pdb │ ├── Emplyees Database_MarkupCompile.cache │ ├── Emplyees Database_MarkupCompile.i.cache │ ├── Emplyees Database_MarkupCompile.lref │ ├── Emplyees_Database.Properties.Resources.resources │ ├── MainWindow.baml │ ├── MainWindow.g.cs │ └── MainWindow.g.i.cs ├── ForLoopConsole ├── .vs │ └── ForLoopConsole │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ForLoopConsole.sln └── ForLoopConsole │ ├── ForLoopConsole.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ForLoopConsole.deps.json │ │ ├── ForLoopConsole.dll │ │ ├── ForLoopConsole.exe │ │ ├── ForLoopConsole.pdb │ │ ├── ForLoopConsole.runtimeconfig.dev.json │ │ └── ForLoopConsole.runtimeconfig.json │ └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ForLoopConsole.AssemblyInfo.cs │ │ ├── ForLoopConsole.AssemblyInfoInputs.cache │ │ ├── ForLoopConsole.assets.cache │ │ ├── ForLoopConsole.csproj.CoreCompileInputs.cache │ │ ├── ForLoopConsole.csproj.FileListAbsolute.txt │ │ ├── ForLoopConsole.csprojAssemblyReference.cache │ │ ├── ForLoopConsole.dll │ │ ├── ForLoopConsole.exe │ │ ├── ForLoopConsole.genruntimeconfig.cache │ │ └── ForLoopConsole.pdb │ ├── ForLoopConsole.csproj.nuget.dgspec.json │ ├── ForLoopConsole.csproj.nuget.g.props │ ├── ForLoopConsole.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── HelloWorld ├── .vs │ └── HelloWorld │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── HelloWorld.sln └── HelloWorld │ ├── HelloWorld.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── HelloWorld.deps.json │ │ ├── HelloWorld.dll │ │ ├── HelloWorld.exe │ │ ├── HelloWorld.pdb │ │ ├── HelloWorld.runtimeconfig.dev.json │ │ └── HelloWorld.runtimeconfig.json │ └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── HelloWorld.AssemblyInfo.cs │ │ ├── HelloWorld.AssemblyInfoInputs.cache │ │ ├── HelloWorld.assets.cache │ │ ├── HelloWorld.csproj.CoreCompileInputs.cache │ │ ├── HelloWorld.csproj.FileListAbsolute.txt │ │ ├── HelloWorld.csprojAssemblyReference.cache │ │ ├── HelloWorld.dll │ │ ├── HelloWorld.exe │ │ ├── HelloWorld.genruntimeconfig.cache │ │ └── HelloWorld.pdb │ ├── HelloWorld.csproj.nuget.dgspec.json │ ├── HelloWorld.csproj.nuget.g.props │ ├── HelloWorld.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── InputUser ├── .vs │ └── InputUser │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── InputUser.sln └── InputUser │ ├── InputUser.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── InputUser.deps.json │ │ ├── InputUser.dll │ │ ├── InputUser.exe │ │ ├── InputUser.pdb │ │ ├── InputUser.runtimeconfig.dev.json │ │ └── InputUser.runtimeconfig.json │ └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── InputUser.AssemblyInfo.cs │ │ ├── InputUser.AssemblyInfoInputs.cache │ │ ├── InputUser.assets.cache │ │ ├── InputUser.csproj.CoreCompileInputs.cache │ │ ├── InputUser.csproj.FileListAbsolute.txt │ │ ├── InputUser.csprojAssemblyReference.cache │ │ ├── InputUser.dll │ │ ├── InputUser.exe │ │ ├── InputUser.genruntimeconfig.cache │ │ └── InputUser.pdb │ ├── InputUser.csproj.nuget.dgspec.json │ ├── InputUser.csproj.nuget.g.props │ ├── InputUser.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Operators ├── .vs │ └── Operators │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── Operators.sln └── Operators │ ├── Operators.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Operators.deps.json │ │ ├── Operators.dll │ │ ├── Operators.exe │ │ ├── Operators.pdb │ │ ├── Operators.runtimeconfig.dev.json │ │ └── Operators.runtimeconfig.json │ └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── Operators.AssemblyInfo.cs │ │ ├── Operators.AssemblyInfoInputs.cache │ │ ├── Operators.assets.cache │ │ ├── Operators.csproj.CoreCompileInputs.cache │ │ ├── Operators.csproj.FileListAbsolute.txt │ │ ├── Operators.csprojAssemblyReference.cache │ │ ├── Operators.dll │ │ ├── Operators.exe │ │ ├── Operators.genruntimeconfig.cache │ │ └── Operators.pdb │ ├── Operators.csproj.nuget.dgspec.json │ ├── Operators.csproj.nuget.g.props │ ├── Operators.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── String ├── .vs │ └── String │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── String.sln └── String │ ├── Program.cs │ ├── String.csproj │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── String.deps.json │ │ ├── String.dll │ │ ├── String.exe │ │ ├── String.pdb │ │ ├── String.runtimeconfig.dev.json │ │ └── String.runtimeconfig.json │ └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── String.AssemblyInfo.cs │ │ ├── String.AssemblyInfoInputs.cache │ │ ├── String.assets.cache │ │ ├── String.csproj.CoreCompileInputs.cache │ │ ├── String.csproj.FileListAbsolute.txt │ │ ├── String.csprojAssemblyReference.cache │ │ ├── String.dll │ │ ├── String.exe │ │ ├── String.genruntimeconfig.cache │ │ └── String.pdb │ ├── String.csproj.nuget.dgspec.json │ ├── String.csproj.nuget.g.props │ ├── String.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── StringBuilder ├── .vs │ └── StringBuilder │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── StringBuilder.sln └── StringBuilder │ ├── Program.cs │ ├── StringBuilder.csproj │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── StringBuilder.deps.json │ │ ├── StringBuilder.dll │ │ ├── StringBuilder.exe │ │ ├── StringBuilder.pdb │ │ ├── StringBuilder.runtimeconfig.dev.json │ │ └── StringBuilder.runtimeconfig.json │ └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── StringBuilder.AssemblyInfo.cs │ │ ├── StringBuilder.AssemblyInfoInputs.cache │ │ ├── StringBuilder.assets.cache │ │ ├── StringBuilder.csproj.CoreCompileInputs.cache │ │ ├── StringBuilder.csproj.FileListAbsolute.txt │ │ ├── StringBuilder.csprojAssemblyReference.cache │ │ ├── StringBuilder.dll │ │ ├── StringBuilder.exe │ │ ├── StringBuilder.genruntimeconfig.cache │ │ └── StringBuilder.pdb │ ├── StringBuilder.csproj.nuget.dgspec.json │ ├── StringBuilder.csproj.nuget.g.props │ ├── StringBuilder.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── StringToOthers ├── .vs │ └── StringToOthers │ │ └── v16 │ │ └── .suo ├── StringToOthers.sln └── StringToOthers │ ├── Program.cs │ ├── StringToOthers.csproj │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── StringToOthers.deps.json │ │ ├── StringToOthers.dll │ │ ├── StringToOthers.exe │ │ ├── StringToOthers.pdb │ │ ├── StringToOthers.runtimeconfig.dev.json │ │ └── StringToOthers.runtimeconfig.json │ └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── StringToOthers.AssemblyInfo.cs │ │ ├── StringToOthers.AssemblyInfoInputs.cache │ │ ├── StringToOthers.assets.cache │ │ ├── StringToOthers.csproj.CoreCompileInputs.cache │ │ ├── StringToOthers.csproj.FileListAbsolute.txt │ │ ├── StringToOthers.csprojAssemblyReference.cache │ │ ├── StringToOthers.dll │ │ ├── StringToOthers.exe │ │ ├── StringToOthers.genruntimeconfig.cache │ │ └── StringToOthers.pdb │ ├── StringToOthers.csproj.nuget.dgspec.json │ ├── StringToOthers.csproj.nuget.g.props │ ├── StringToOthers.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── SwitchCase ├── .vs │ └── SwitchCase │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── SwitchCase.sln └── SwitchCase │ ├── Program.cs │ ├── SwitchCase.csproj │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── SwitchCase.deps.json │ │ ├── SwitchCase.dll │ │ ├── SwitchCase.exe │ │ ├── SwitchCase.pdb │ │ ├── SwitchCase.runtimeconfig.dev.json │ │ └── SwitchCase.runtimeconfig.json │ └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── SwitchCase.AssemblyInfo.cs │ │ ├── SwitchCase.AssemblyInfoInputs.cache │ │ ├── SwitchCase.assets.cache │ │ ├── SwitchCase.csproj.CoreCompileInputs.cache │ │ ├── SwitchCase.csproj.FileListAbsolute.txt │ │ ├── SwitchCase.dll │ │ ├── SwitchCase.exe │ │ ├── SwitchCase.genruntimeconfig.cache │ │ └── SwitchCase.pdb │ ├── SwitchCase.csproj.nuget.dgspec.json │ ├── SwitchCase.csproj.nuget.g.props │ ├── SwitchCase.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── ThisKeyword ├── .vs │ └── ThisKeyword │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── ThisKeyword.sln └── ThisKeyword │ ├── Program.cs │ ├── ThisKeyword.csproj │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ThisKeyword.deps.json │ │ ├── ThisKeyword.dll │ │ ├── ThisKeyword.exe │ │ ├── ThisKeyword.pdb │ │ ├── ThisKeyword.runtimeconfig.dev.json │ │ └── ThisKeyword.runtimeconfig.json │ └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ThisKeyword.AssemblyInfo.cs │ │ ├── ThisKeyword.AssemblyInfoInputs.cache │ │ ├── ThisKeyword.assets.cache │ │ ├── ThisKeyword.csproj.CoreCompileInputs.cache │ │ ├── ThisKeyword.csproj.FileListAbsolute.txt │ │ ├── ThisKeyword.csprojAssemblyReference.cache │ │ ├── ThisKeyword.dll │ │ ├── ThisKeyword.exe │ │ ├── ThisKeyword.genruntimeconfig.cache │ │ └── ThisKeyword.pdb │ ├── ThisKeyword.csproj.nuget.dgspec.json │ ├── ThisKeyword.csproj.nuget.g.props │ ├── ThisKeyword.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Variables ├── .vs │ └── Variables │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── Variables.sln └── Variables │ ├── Program.cs │ ├── Variables.csproj │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Variables.deps.json │ │ ├── Variables.dll │ │ ├── Variables.exe │ │ ├── Variables.pdb │ │ ├── Variables.runtimeconfig.dev.json │ │ └── Variables.runtimeconfig.json │ └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── Variables.AssemblyInfo.cs │ │ ├── Variables.AssemblyInfoInputs.cache │ │ ├── Variables.assets.cache │ │ ├── Variables.csproj.CoreCompileInputs.cache │ │ ├── Variables.csproj.FileListAbsolute.txt │ │ ├── Variables.csprojAssemblyReference.cache │ │ ├── Variables.dll │ │ ├── Variables.exe │ │ ├── Variables.genruntimeconfig.cache │ │ └── Variables.pdb │ ├── Variables.csproj.nuget.dgspec.json │ ├── Variables.csproj.nuget.g.props │ ├── Variables.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── WpfApp1 ├── .vs │ └── WpfApp1 │ │ └── v16 │ │ └── .suo ├── WpfApp1.sln └── WpfApp1 │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── WpfApp1.csproj │ ├── bin │ └── Debug │ │ ├── WpfApp1.exe │ │ ├── WpfApp1.exe.config │ │ └── WpfApp1.pdb │ └── obj │ └── Debug │ ├── App.g.cs │ ├── App.g.i.cs │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── MainWindow.baml │ ├── MainWindow.g.cs │ ├── MainWindow.g.i.cs │ ├── WpfApp1.Properties.Resources.resources │ ├── WpfApp1.csproj.CoreCompileInputs.cache │ ├── WpfApp1.csproj.FileListAbsolute.txt │ ├── WpfApp1.csproj.GenerateResource.cache │ ├── WpfApp1.csprojAssemblyReference.cache │ ├── WpfApp1.exe │ ├── WpfApp1.g.resources │ ├── WpfApp1.pdb │ ├── WpfApp1_MarkupCompile.cache │ ├── WpfApp1_MarkupCompile.i.cache │ ├── WpfApp1_MarkupCompile.i.lref │ └── WpfApp1_MarkupCompile.lref ├── WpfAppDataGrid ├── .vs │ └── WpfAppDataGrid │ │ └── v16 │ │ └── .suo ├── WpfAppDataGrid.sln └── WpfAppDataGrid │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── WpfAppDataGrid.csproj │ ├── bin │ └── Debug │ │ ├── WpfAppDataGrid.exe │ │ ├── WpfAppDataGrid.exe.config │ │ └── WpfAppDataGrid.pdb │ └── obj │ └── Debug │ ├── App.g.cs │ ├── App.g.i.cs │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── MainWindow.baml │ ├── MainWindow.g.cs │ ├── MainWindow.g.i.cs │ ├── WpfAppDataGrid.Properties.Resources.resources │ ├── WpfAppDataGrid.csproj.CoreCompileInputs.cache │ ├── WpfAppDataGrid.csproj.FileListAbsolute.txt │ ├── WpfAppDataGrid.csproj.GenerateResource.cache │ ├── WpfAppDataGrid.exe │ ├── WpfAppDataGrid.g.resources │ ├── WpfAppDataGrid.pdb │ ├── WpfAppDataGrid_MarkupCompile.cache │ ├── WpfAppDataGrid_MarkupCompile.i.cache │ ├── WpfAppDataGrid_MarkupCompile.i.lref │ └── WpfAppDataGrid_MarkupCompile.lref ├── WpfAppListView ├── .vs │ └── WpfAppListView │ │ └── v16 │ │ └── .suo ├── WpfAppListView.sln └── WpfAppListView │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── WpfAppListView.csproj │ ├── bin │ └── Debug │ │ ├── WpfAppListView.exe │ │ ├── WpfAppListView.exe.config │ │ └── WpfAppListView.pdb │ └── obj │ └── Debug │ ├── App.g.cs │ ├── App.g.i.cs │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── MainWindow.baml │ ├── MainWindow.g.cs │ ├── MainWindow.g.i.cs │ ├── WpfAppListView.Properties.Resources.resources │ ├── WpfAppListView.csproj.CoreCompileInputs.cache │ ├── WpfAppListView.csproj.FileListAbsolute.txt │ ├── WpfAppListView.csproj.GenerateResource.cache │ ├── WpfAppListView.csprojAssemblyReference.cache │ ├── WpfAppListView.exe │ ├── WpfAppListView.g.resources │ ├── WpfAppListView.pdb │ ├── WpfAppListView_MarkupCompile.cache │ ├── WpfAppListView_MarkupCompile.i.cache │ ├── WpfAppListView_MarkupCompile.i.lref │ └── WpfAppListView_MarkupCompile.lref ├── WpfAppListViewGridView ├── .vs │ └── WpfAppListViewGridView │ │ └── v16 │ │ └── .suo ├── WpfAppListViewGridView.sln └── WpfAppListViewGridView │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── WpfAppListViewGridView.csproj │ ├── bin │ └── Debug │ │ ├── WpfAppListViewGridView.exe │ │ ├── WpfAppListViewGridView.exe.config │ │ └── WpfAppListViewGridView.pdb │ └── obj │ └── Debug │ ├── App.g.cs │ ├── App.g.i.cs │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── MainWindow.baml │ ├── MainWindow.g.cs │ ├── MainWindow.g.i.cs │ ├── WpfAppListViewGridView.Properties.Resources.resources │ ├── WpfAppListViewGridView.csproj.CoreCompileInputs.cache │ ├── WpfAppListViewGridView.csproj.FileListAbsolute.txt │ ├── WpfAppListViewGridView.csproj.GenerateResource.cache │ ├── WpfAppListViewGridView.csprojAssemblyReference.cache │ ├── WpfAppListViewGridView.exe │ ├── WpfAppListViewGridView.g.resources │ ├── WpfAppListViewGridView.pdb │ ├── WpfAppListViewGridView_MarkupCompile.cache │ ├── WpfAppListViewGridView_MarkupCompile.i.cache │ ├── WpfAppListViewGridView_MarkupCompile.i.lref │ └── WpfAppListViewGridView_MarkupCompile.lref └── WpfGroupBox ├── .vs └── WpfGroupBox │ └── v16 │ └── .suo ├── WpfGroupBox.sln └── WpfGroupBox ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── WpfGroupBox.csproj ├── bin └── Debug │ ├── WpfGroupBox.exe │ ├── WpfGroupBox.exe.config │ └── WpfGroupBox.pdb └── obj └── Debug ├── App.g.cs ├── App.g.i.cs ├── DesignTimeResolveAssemblyReferencesInput.cache ├── MainWindow.baml ├── MainWindow.g.cs ├── MainWindow.g.i.cs ├── WpfGroupBox.Properties.Resources.resources ├── WpfGroupBox.csproj.CoreCompileInputs.cache ├── WpfGroupBox.csproj.FileListAbsolute.txt ├── WpfGroupBox.csproj.GenerateResource.cache ├── WpfGroupBox.csprojAssemblyReference.cache ├── WpfGroupBox.exe ├── WpfGroupBox.g.resources ├── WpfGroupBox.pdb ├── WpfGroupBox_MarkupCompile.cache ├── WpfGroupBox_MarkupCompile.i.cache ├── WpfGroupBox_MarkupCompile.i.lref └── WpfGroupBox_MarkupCompile.lref /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /Chars/.vs/Chars/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/.vs/Chars/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Chars/.vs/Chars/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/.vs/Chars/v16/.suo -------------------------------------------------------------------------------- /Chars/Chars.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars.sln -------------------------------------------------------------------------------- /Chars/Chars/Chars.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/Chars.csproj -------------------------------------------------------------------------------- /Chars/Chars/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/Program.cs -------------------------------------------------------------------------------- /Chars/Chars/bin/Debug/netcoreapp3.1/Chars.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/bin/Debug/netcoreapp3.1/Chars.deps.json -------------------------------------------------------------------------------- /Chars/Chars/bin/Debug/netcoreapp3.1/Chars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/bin/Debug/netcoreapp3.1/Chars.dll -------------------------------------------------------------------------------- /Chars/Chars/bin/Debug/netcoreapp3.1/Chars.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/bin/Debug/netcoreapp3.1/Chars.exe -------------------------------------------------------------------------------- /Chars/Chars/bin/Debug/netcoreapp3.1/Chars.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/bin/Debug/netcoreapp3.1/Chars.pdb -------------------------------------------------------------------------------- /Chars/Chars/bin/Debug/netcoreapp3.1/Chars.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/bin/Debug/netcoreapp3.1/Chars.runtimeconfig.dev.json -------------------------------------------------------------------------------- /Chars/Chars/bin/Debug/netcoreapp3.1/Chars.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/bin/Debug/netcoreapp3.1/Chars.runtimeconfig.json -------------------------------------------------------------------------------- /Chars/Chars/obj/Chars.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/obj/Chars.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Chars/Chars/obj/Chars.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/obj/Chars.csproj.nuget.g.props -------------------------------------------------------------------------------- /Chars/Chars/obj/Chars.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/obj/Chars.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Chars/Chars/obj/Debug/netcoreapp3.1/Chars.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/obj/Debug/netcoreapp3.1/Chars.AssemblyInfo.cs -------------------------------------------------------------------------------- /Chars/Chars/obj/Debug/netcoreapp3.1/Chars.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6938d93cf439796a18ac830d976dcaad9b55e2ba 2 | -------------------------------------------------------------------------------- /Chars/Chars/obj/Debug/netcoreapp3.1/Chars.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/obj/Debug/netcoreapp3.1/Chars.assets.cache -------------------------------------------------------------------------------- /Chars/Chars/obj/Debug/netcoreapp3.1/Chars.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /Chars/Chars/obj/Debug/netcoreapp3.1/Chars.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/obj/Debug/netcoreapp3.1/Chars.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Chars/Chars/obj/Debug/netcoreapp3.1/Chars.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/obj/Debug/netcoreapp3.1/Chars.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Chars/Chars/obj/Debug/netcoreapp3.1/Chars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/obj/Debug/netcoreapp3.1/Chars.dll -------------------------------------------------------------------------------- /Chars/Chars/obj/Debug/netcoreapp3.1/Chars.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/obj/Debug/netcoreapp3.1/Chars.exe -------------------------------------------------------------------------------- /Chars/Chars/obj/Debug/netcoreapp3.1/Chars.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /Chars/Chars/obj/Debug/netcoreapp3.1/Chars.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/obj/Debug/netcoreapp3.1/Chars.pdb -------------------------------------------------------------------------------- /Chars/Chars/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/obj/project.assets.json -------------------------------------------------------------------------------- /Chars/Chars/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Chars/Chars/obj/project.nuget.cache -------------------------------------------------------------------------------- /Collections_Dictionary1/.vs/Collections_Dictionary1/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Dictionary1/.vs/Collections_Dictionary1/v16/.suo -------------------------------------------------------------------------------- /Collections_Dictionary1/Collections_Dictionary1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Dictionary1/Collections_Dictionary1.sln -------------------------------------------------------------------------------- /Collections_Dictionary1/Collections_Dictionary1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Dictionary1/Collections_Dictionary1/Program.cs -------------------------------------------------------------------------------- /Collections_Dictionary1/Collections_Dictionary1/obj/Debug/netcoreapp3.1/Collections_Dictionary1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 90a3ea7815d9c658f6c60895650ad524b2b232cb 2 | -------------------------------------------------------------------------------- /Collections_Dictionary1/Collections_Dictionary1/obj/Debug/netcoreapp3.1/Collections_Dictionary1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /Collections_Dictionary1/Collections_Dictionary1/obj/Debug/netcoreapp3.1/Collections_Dictionary1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /Collections_Dictionary1/Collections_Dictionary1/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Dictionary1/Collections_Dictionary1/obj/project.assets.json -------------------------------------------------------------------------------- /Collections_Dictionary1/Collections_Dictionary1/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Dictionary1/Collections_Dictionary1/obj/project.nuget.cache -------------------------------------------------------------------------------- /Collections_HashSet1/.vs/Collections_HashSet1/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_HashSet1/.vs/Collections_HashSet1/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Collections_HashSet1/.vs/Collections_HashSet1/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_HashSet1/.vs/Collections_HashSet1/v16/.suo -------------------------------------------------------------------------------- /Collections_HashSet1/Collections_HashSet1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_HashSet1/Collections_HashSet1.sln -------------------------------------------------------------------------------- /Collections_HashSet1/Collections_HashSet1/Collections_HashSet1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_HashSet1/Collections_HashSet1/Collections_HashSet1.csproj -------------------------------------------------------------------------------- /Collections_HashSet1/Collections_HashSet1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_HashSet1/Collections_HashSet1/Program.cs -------------------------------------------------------------------------------- /Collections_HashSet1/Collections_HashSet1/obj/Debug/netcoreapp3.1/Collections_HashSet1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 02166ab122040efad081f15663737f22aeb383b9 2 | -------------------------------------------------------------------------------- /Collections_HashSet1/Collections_HashSet1/obj/Debug/netcoreapp3.1/Collections_HashSet1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /Collections_HashSet1/Collections_HashSet1/obj/Debug/netcoreapp3.1/Collections_HashSet1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /Collections_HashSet1/Collections_HashSet1/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_HashSet1/Collections_HashSet1/obj/project.assets.json -------------------------------------------------------------------------------- /Collections_HashSet1/Collections_HashSet1/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_HashSet1/Collections_HashSet1/obj/project.nuget.cache -------------------------------------------------------------------------------- /Collections_LinkedList1/.vs/Collections_LinkedList1/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_LinkedList1/.vs/Collections_LinkedList1/v16/.suo -------------------------------------------------------------------------------- /Collections_LinkedList1/Collections_LinkedList1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_LinkedList1/Collections_LinkedList1.sln -------------------------------------------------------------------------------- /Collections_LinkedList1/Collections_LinkedList1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_LinkedList1/Collections_LinkedList1/Program.cs -------------------------------------------------------------------------------- /Collections_LinkedList1/Collections_LinkedList1/obj/Debug/netcoreapp3.1/Collections_LinkedList1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 41a5e4932ae5f5621754d3efcd306cdb5a8ad9a6 2 | -------------------------------------------------------------------------------- /Collections_LinkedList1/Collections_LinkedList1/obj/Debug/netcoreapp3.1/Collections_LinkedList1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /Collections_LinkedList1/Collections_LinkedList1/obj/Debug/netcoreapp3.1/Collections_LinkedList1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /Collections_LinkedList1/Collections_LinkedList1/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_LinkedList1/Collections_LinkedList1/obj/project.assets.json -------------------------------------------------------------------------------- /Collections_LinkedList1/Collections_LinkedList1/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_LinkedList1/Collections_LinkedList1/obj/project.nuget.cache -------------------------------------------------------------------------------- /Collections_List/.vs/Collections_List/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_List/.vs/Collections_List/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Collections_List/.vs/Collections_List/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_List/.vs/Collections_List/v16/.suo -------------------------------------------------------------------------------- /Collections_List/Collections_List.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_List/Collections_List.sln -------------------------------------------------------------------------------- /Collections_List/Collections_List/Collections_List.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_List/Collections_List/Collections_List.csproj -------------------------------------------------------------------------------- /Collections_List/Collections_List/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_List/Collections_List/Program.cs -------------------------------------------------------------------------------- /Collections_List/Collections_List/obj/Collections_List.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_List/Collections_List/obj/Collections_List.csproj.nuget.g.props -------------------------------------------------------------------------------- /Collections_List/Collections_List/obj/Debug/netcoreapp3.1/Collections_List.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7317937bdd3d28a6c4c4ff9f553d4a371ba8dea2 2 | -------------------------------------------------------------------------------- /Collections_List/Collections_List/obj/Debug/netcoreapp3.1/Collections_List.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /Collections_List/Collections_List/obj/Debug/netcoreapp3.1/Collections_List.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /Collections_List/Collections_List/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_List/Collections_List/obj/project.assets.json -------------------------------------------------------------------------------- /Collections_List/Collections_List/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_List/Collections_List/obj/project.nuget.cache -------------------------------------------------------------------------------- /Collections_Queue1/.vs/Collections_Queue1/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Queue1/.vs/Collections_Queue1/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Collections_Queue1/.vs/Collections_Queue1/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Queue1/.vs/Collections_Queue1/v16/.suo -------------------------------------------------------------------------------- /Collections_Queue1/Collections_Queue1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Queue1/Collections_Queue1.sln -------------------------------------------------------------------------------- /Collections_Queue1/Collections_Queue1/Collections_Queue1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Queue1/Collections_Queue1/Collections_Queue1.csproj -------------------------------------------------------------------------------- /Collections_Queue1/Collections_Queue1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Queue1/Collections_Queue1/Program.cs -------------------------------------------------------------------------------- /Collections_Queue1/Collections_Queue1/obj/Debug/netcoreapp3.1/Collections_Queue1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d152f0b17c350183926c779f3af6a9a5489ec51a 2 | -------------------------------------------------------------------------------- /Collections_Queue1/Collections_Queue1/obj/Debug/netcoreapp3.1/Collections_Queue1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /Collections_Queue1/Collections_Queue1/obj/Debug/netcoreapp3.1/Collections_Queue1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /Collections_Queue1/Collections_Queue1/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Queue1/Collections_Queue1/obj/project.assets.json -------------------------------------------------------------------------------- /Collections_Queue1/Collections_Queue1/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Queue1/Collections_Queue1/obj/project.nuget.cache -------------------------------------------------------------------------------- /Collections_SortedSet1/.vs/Collections_SortedSet1/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_SortedSet1/.vs/Collections_SortedSet1/v16/.suo -------------------------------------------------------------------------------- /Collections_SortedSet1/Collections_SortedSet1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_SortedSet1/Collections_SortedSet1.sln -------------------------------------------------------------------------------- /Collections_SortedSet1/Collections_SortedSet1/Collections_SortedSet1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_SortedSet1/Collections_SortedSet1/Collections_SortedSet1.csproj -------------------------------------------------------------------------------- /Collections_SortedSet1/Collections_SortedSet1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_SortedSet1/Collections_SortedSet1/Program.cs -------------------------------------------------------------------------------- /Collections_SortedSet1/Collections_SortedSet1/obj/Debug/netcoreapp3.1/Collections_SortedSet1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b9fabda382d11e23474d41475279d5af3be9d4da 2 | -------------------------------------------------------------------------------- /Collections_SortedSet1/Collections_SortedSet1/obj/Debug/netcoreapp3.1/Collections_SortedSet1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /Collections_SortedSet1/Collections_SortedSet1/obj/Debug/netcoreapp3.1/Collections_SortedSet1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /Collections_SortedSet1/Collections_SortedSet1/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_SortedSet1/Collections_SortedSet1/obj/project.assets.json -------------------------------------------------------------------------------- /Collections_SortedSet1/Collections_SortedSet1/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_SortedSet1/Collections_SortedSet1/obj/project.nuget.cache -------------------------------------------------------------------------------- /Collections_Sorted_Dictionary/.vs/Collections_Sorted_Dictionary/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Sorted_Dictionary/.vs/Collections_Sorted_Dictionary/v16/.suo -------------------------------------------------------------------------------- /Collections_Sorted_Dictionary/Collections_Sorted_Dictionary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Sorted_Dictionary/Collections_Sorted_Dictionary.sln -------------------------------------------------------------------------------- /Collections_Sorted_Dictionary/Collections_Sorted_Dictionary/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Sorted_Dictionary/Collections_Sorted_Dictionary/Program.cs -------------------------------------------------------------------------------- /Collections_Sorted_Dictionary/Collections_Sorted_Dictionary/obj/Debug/netcoreapp3.1/Collections_Sorted_Dictionary.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ef567029728395bb89038cf116ce990128abc7f2 2 | -------------------------------------------------------------------------------- /Collections_Sorted_Dictionary/Collections_Sorted_Dictionary/obj/Debug/netcoreapp3.1/Collections_Sorted_Dictionary.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /Collections_Sorted_Dictionary/Collections_Sorted_Dictionary/obj/Debug/netcoreapp3.1/Collections_Sorted_Dictionary.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /Collections_Sorted_List/.vs/Collections_Sorted_List/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Sorted_List/.vs/Collections_Sorted_List/v16/.suo -------------------------------------------------------------------------------- /Collections_Sorted_List/Collections_Sorted_List.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Sorted_List/Collections_Sorted_List.sln -------------------------------------------------------------------------------- /Collections_Sorted_List/Collections_Sorted_List/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Sorted_List/Collections_Sorted_List/Program.cs -------------------------------------------------------------------------------- /Collections_Sorted_List/Collections_Sorted_List/obj/Debug/netcoreapp3.1/Collections_Sorted_List.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | aaa5535ebb6f191df938d6d932886b2b1df997e7 2 | -------------------------------------------------------------------------------- /Collections_Sorted_List/Collections_Sorted_List/obj/Debug/netcoreapp3.1/Collections_Sorted_List.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /Collections_Sorted_List/Collections_Sorted_List/obj/Debug/netcoreapp3.1/Collections_Sorted_List.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /Collections_Sorted_List/Collections_Sorted_List/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Sorted_List/Collections_Sorted_List/obj/project.assets.json -------------------------------------------------------------------------------- /Collections_Sorted_List/Collections_Sorted_List/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Sorted_List/Collections_Sorted_List/obj/project.nuget.cache -------------------------------------------------------------------------------- /Collections_Stack1/.vs/Collections_Stack1/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Stack1/.vs/Collections_Stack1/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Collections_Stack1/.vs/Collections_Stack1/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Stack1/.vs/Collections_Stack1/v16/.suo -------------------------------------------------------------------------------- /Collections_Stack1/Collections_Stack1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Stack1/Collections_Stack1.sln -------------------------------------------------------------------------------- /Collections_Stack1/Collections_Stack1/Collections_Stack1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Stack1/Collections_Stack1/Collections_Stack1.csproj -------------------------------------------------------------------------------- /Collections_Stack1/Collections_Stack1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Stack1/Collections_Stack1/Program.cs -------------------------------------------------------------------------------- /Collections_Stack1/Collections_Stack1/obj/Debug/netcoreapp3.1/Collections_Stack1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6a6285a399d4aecfa370b5b886116e3618752774 2 | -------------------------------------------------------------------------------- /Collections_Stack1/Collections_Stack1/obj/Debug/netcoreapp3.1/Collections_Stack1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /Collections_Stack1/Collections_Stack1/obj/Debug/netcoreapp3.1/Collections_Stack1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /Collections_Stack1/Collections_Stack1/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Stack1/Collections_Stack1/obj/project.assets.json -------------------------------------------------------------------------------- /Collections_Stack1/Collections_Stack1/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Collections_Stack1/Collections_Stack1/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConditionStateIF/.vs/ConditionStateIF/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConditionStateIF/.vs/ConditionStateIF/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ConditionStateIF/.vs/ConditionStateIF/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConditionStateIF/.vs/ConditionStateIF/v16/.suo -------------------------------------------------------------------------------- /ConditionStateIF/ConditionStateIF.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConditionStateIF/ConditionStateIF.sln -------------------------------------------------------------------------------- /ConditionStateIF/ConditionStateIF/ConditionStateIF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConditionStateIF/ConditionStateIF/ConditionStateIF.csproj -------------------------------------------------------------------------------- /ConditionStateIF/ConditionStateIF/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConditionStateIF/ConditionStateIF/Program.cs -------------------------------------------------------------------------------- /ConditionStateIF/ConditionStateIF/obj/ConditionStateIF.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConditionStateIF/ConditionStateIF/obj/ConditionStateIF.csproj.nuget.g.props -------------------------------------------------------------------------------- /ConditionStateIF/ConditionStateIF/obj/Debug/netcoreapp3.1/ConditionStateIF.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConditionStateIF/ConditionStateIF/obj/Debug/netcoreapp3.1/ConditionStateIF.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConditionStateIF/ConditionStateIF/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConditionStateIF/ConditionStateIF/obj/project.assets.json -------------------------------------------------------------------------------- /ConditionStateIF/ConditionStateIF/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConditionStateIF/ConditionStateIF/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppAbstraction/.vs/ConsoleAppAbstraction/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppAbstraction/.vs/ConsoleAppAbstraction/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppAbstraction/ConsoleAppAbstraction.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppAbstraction/ConsoleAppAbstraction.sln -------------------------------------------------------------------------------- /ConsoleAppAbstraction/ConsoleAppAbstraction/ConsoleAppAbstraction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppAbstraction/ConsoleAppAbstraction/ConsoleAppAbstraction.csproj -------------------------------------------------------------------------------- /ConsoleAppAbstraction/ConsoleAppAbstraction/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppAbstraction/ConsoleAppAbstraction/Program.cs -------------------------------------------------------------------------------- /ConsoleAppAbstraction/ConsoleAppAbstraction/obj/Debug/netcoreapp3.1/ConsoleAppAbstraction.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c850b4041909c84eed5df44f2651cc1ffbde55db 2 | -------------------------------------------------------------------------------- /ConsoleAppAbstraction/ConsoleAppAbstraction/obj/Debug/netcoreapp3.1/ConsoleAppAbstraction.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppAbstraction/ConsoleAppAbstraction/obj/Debug/netcoreapp3.1/ConsoleAppAbstraction.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppAbstraction/ConsoleAppAbstraction/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppAbstraction/ConsoleAppAbstraction/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppAbstraction/ConsoleAppAbstraction/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppAbstraction/ConsoleAppAbstraction/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppAccessModifier/.vs/ConsoleAppAccessModifier/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppAccessModifier/.vs/ConsoleAppAccessModifier/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppAccessModifier/ConsoleAppAccessModifier.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppAccessModifier/ConsoleAppAccessModifier.sln -------------------------------------------------------------------------------- /ConsoleAppAccessModifier/ConsoleAppAccessModifier/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppAccessModifier/ConsoleAppAccessModifier/Program.cs -------------------------------------------------------------------------------- /ConsoleAppAccessModifier/ConsoleAppAccessModifier/obj/Debug/netcoreapp3.1/ConsoleAppAccessModifier.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | fa9d0af5c712512fc0760b3b08f880881b75cff4 2 | -------------------------------------------------------------------------------- /ConsoleAppAccessModifier/ConsoleAppAccessModifier/obj/Debug/netcoreapp3.1/ConsoleAppAccessModifier.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppAccessModifier/ConsoleAppAccessModifier/obj/Debug/netcoreapp3.1/ConsoleAppAccessModifier.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppAccessModifier/ConsoleAppAccessModifier/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppAccessModifier/ConsoleAppAccessModifier/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppAccessModifier/ConsoleAppAccessModifier/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppAccessModifier/ConsoleAppAccessModifier/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppAggregation/.vs/ConsoleAppAggregation/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppAggregation/.vs/ConsoleAppAggregation/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ConsoleAppAggregation/.vs/ConsoleAppAggregation/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppAggregation/.vs/ConsoleAppAggregation/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppAggregation/ConsoleAppAggregation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppAggregation/ConsoleAppAggregation.sln -------------------------------------------------------------------------------- /ConsoleAppAggregation/ConsoleAppAggregation/ConsoleAppAggregation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppAggregation/ConsoleAppAggregation/ConsoleAppAggregation.csproj -------------------------------------------------------------------------------- /ConsoleAppAggregation/ConsoleAppAggregation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppAggregation/ConsoleAppAggregation/Program.cs -------------------------------------------------------------------------------- /ConsoleAppAggregation/ConsoleAppAggregation/obj/Debug/netcoreapp3.1/ConsoleAppAggregation.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 72e6f389152ead3f88618c9e728cb16561db1759 2 | -------------------------------------------------------------------------------- /ConsoleAppAggregation/ConsoleAppAggregation/obj/Debug/netcoreapp3.1/ConsoleAppAggregation.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppAggregation/ConsoleAppAggregation/obj/Debug/netcoreapp3.1/ConsoleAppAggregation.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppAggregation/ConsoleAppAggregation/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppAggregation/ConsoleAppAggregation/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppAggregation/ConsoleAppAggregation/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppAggregation/ConsoleAppAggregation/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppArrays/.vs/ConsoleAppArrays/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppArrays/.vs/ConsoleAppArrays/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ConsoleAppArrays/.vs/ConsoleAppArrays/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppArrays/.vs/ConsoleAppArrays/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppArrays/ConsoleAppArrays.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppArrays/ConsoleAppArrays.sln -------------------------------------------------------------------------------- /ConsoleAppArrays/ConsoleAppArrays/ConsoleAppArrays.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppArrays/ConsoleAppArrays/ConsoleAppArrays.csproj -------------------------------------------------------------------------------- /ConsoleAppArrays/ConsoleAppArrays/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppArrays/ConsoleAppArrays/Program.cs -------------------------------------------------------------------------------- /ConsoleAppArrays/ConsoleAppArrays/obj/ConsoleAppArrays.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppArrays/ConsoleAppArrays/obj/ConsoleAppArrays.csproj.nuget.g.props -------------------------------------------------------------------------------- /ConsoleAppArrays/ConsoleAppArrays/obj/Debug/netcoreapp3.1/ConsoleAppArrays.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 17fd15f68871fbce6e3ccbf2a5dbf02c3cf581f1 2 | -------------------------------------------------------------------------------- /ConsoleAppArrays/ConsoleAppArrays/obj/Debug/netcoreapp3.1/ConsoleAppArrays.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppArrays/ConsoleAppArrays/obj/Debug/netcoreapp3.1/ConsoleAppArrays.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppArrays/ConsoleAppArrays/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppArrays/ConsoleAppArrays/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppArrays/ConsoleAppArrays/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppArrays/ConsoleAppArrays/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppChecked/.vs/ConsoleAppChecked/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppChecked/.vs/ConsoleAppChecked/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ConsoleAppChecked/.vs/ConsoleAppChecked/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppChecked/.vs/ConsoleAppChecked/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppChecked/ConsoleAppChecked.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppChecked/ConsoleAppChecked.sln -------------------------------------------------------------------------------- /ConsoleAppChecked/ConsoleAppChecked/ConsoleAppChecked.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppChecked/ConsoleAppChecked/ConsoleAppChecked.csproj -------------------------------------------------------------------------------- /ConsoleAppChecked/ConsoleAppChecked/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppChecked/ConsoleAppChecked/Program.cs -------------------------------------------------------------------------------- /ConsoleAppChecked/ConsoleAppChecked/obj/Debug/netcoreapp3.1/ConsoleAppChecked.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6665f43bfd3298b1039e28a8f035252a16b60d0a 2 | -------------------------------------------------------------------------------- /ConsoleAppChecked/ConsoleAppChecked/obj/Debug/netcoreapp3.1/ConsoleAppChecked.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppChecked/ConsoleAppChecked/obj/Debug/netcoreapp3.1/ConsoleAppChecked.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppChecked/ConsoleAppChecked/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppChecked/ConsoleAppChecked/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppChecked/ConsoleAppChecked/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppChecked/ConsoleAppChecked/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppEmployeeCon/.vs/ConsoleAppEmployeeCon/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppEmployeeCon/.vs/ConsoleAppEmployeeCon/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ConsoleAppEmployeeCon/.vs/ConsoleAppEmployeeCon/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppEmployeeCon/.vs/ConsoleAppEmployeeCon/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppEmployeeCon/ConsoleAppEmployeeCon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppEmployeeCon/ConsoleAppEmployeeCon.sln -------------------------------------------------------------------------------- /ConsoleAppEmployeeCon/ConsoleAppEmployeeCon/ConsoleAppEmployeeCon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppEmployeeCon/ConsoleAppEmployeeCon/ConsoleAppEmployeeCon.csproj -------------------------------------------------------------------------------- /ConsoleAppEmployeeCon/ConsoleAppEmployeeCon/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppEmployeeCon/ConsoleAppEmployeeCon/Program.cs -------------------------------------------------------------------------------- /ConsoleAppEmployeeCon/ConsoleAppEmployeeCon/obj/Debug/netcoreapp3.1/ConsoleAppEmployeeCon.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b585c7c5b1f155d3589f28cfdc1fc57dc5f7a00c 2 | -------------------------------------------------------------------------------- /ConsoleAppEmployeeCon/ConsoleAppEmployeeCon/obj/Debug/netcoreapp3.1/ConsoleAppEmployeeCon.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppEmployeeCon/ConsoleAppEmployeeCon/obj/Debug/netcoreapp3.1/ConsoleAppEmployeeCon.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppEmployeeCon/ConsoleAppEmployeeCon/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppEmployeeCon/ConsoleAppEmployeeCon/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppEmployeeCon/ConsoleAppEmployeeCon/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppEmployeeCon/ConsoleAppEmployeeCon/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppEncapsulation/.vs/ConsoleAppEncapsulation/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppEncapsulation/.vs/ConsoleAppEncapsulation/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppEncapsulation/ConsoleAppEncapsulation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppEncapsulation/ConsoleAppEncapsulation.sln -------------------------------------------------------------------------------- /ConsoleAppEncapsulation/ConsoleAppEncapsulation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppEncapsulation/ConsoleAppEncapsulation/Program.cs -------------------------------------------------------------------------------- /ConsoleAppEncapsulation/ConsoleAppEncapsulation/obj/Debug/netcoreapp3.1/ConsoleAppEncapsulation.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b2f6bbaa93ce14b0adaf2ebcabf670c9b20700d9 2 | -------------------------------------------------------------------------------- /ConsoleAppEncapsulation/ConsoleAppEncapsulation/obj/Debug/netcoreapp3.1/ConsoleAppEncapsulation.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppEncapsulation/ConsoleAppEncapsulation/obj/Debug/netcoreapp3.1/ConsoleAppEncapsulation.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppEncapsulation/ConsoleAppEncapsulation/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppEncapsulation/ConsoleAppEncapsulation/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppEncapsulation/ConsoleAppEncapsulation/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppEncapsulation/ConsoleAppEncapsulation/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppException/.vs/ConsoleAppException/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppException/.vs/ConsoleAppException/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppException/ConsoleAppException.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppException/ConsoleAppException.sln -------------------------------------------------------------------------------- /ConsoleAppException/ConsoleAppException/ConsoleAppException.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppException/ConsoleAppException/ConsoleAppException.csproj -------------------------------------------------------------------------------- /ConsoleAppException/ConsoleAppException/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppException/ConsoleAppException/Program.cs -------------------------------------------------------------------------------- /ConsoleAppException/ConsoleAppException/obj/Debug/netcoreapp3.1/ConsoleAppException.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 3764556501e0fb1833f9058fadd3db4530bb94fb 2 | -------------------------------------------------------------------------------- /ConsoleAppException/ConsoleAppException/obj/Debug/netcoreapp3.1/ConsoleAppException.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppException/ConsoleAppException/obj/Debug/netcoreapp3.1/ConsoleAppException.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppException/ConsoleAppException/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppException/ConsoleAppException/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppException/ConsoleAppException/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppException/ConsoleAppException/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppFunctions/.vs/ConsoleAppFunctions/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppFunctions/.vs/ConsoleAppFunctions/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ConsoleAppFunctions/.vs/ConsoleAppFunctions/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppFunctions/.vs/ConsoleAppFunctions/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppFunctions/ConsoleAppFunctions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppFunctions/ConsoleAppFunctions.sln -------------------------------------------------------------------------------- /ConsoleAppFunctions/ConsoleAppFunctions/ConsoleAppFunctions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppFunctions/ConsoleAppFunctions/ConsoleAppFunctions.csproj -------------------------------------------------------------------------------- /ConsoleAppFunctions/ConsoleAppFunctions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppFunctions/ConsoleAppFunctions/Program.cs -------------------------------------------------------------------------------- /ConsoleAppFunctions/ConsoleAppFunctions/obj/Debug/netcoreapp3.1/ConsoleAppFunctions.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | cb0e86c727e8ea66b3b86dfe5fd3544a199cbe47 2 | -------------------------------------------------------------------------------- /ConsoleAppFunctions/ConsoleAppFunctions/obj/Debug/netcoreapp3.1/ConsoleAppFunctions.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppFunctions/ConsoleAppFunctions/obj/Debug/netcoreapp3.1/ConsoleAppFunctions.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppFunctions/ConsoleAppFunctions/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppFunctions/ConsoleAppFunctions/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppFunctions/ConsoleAppFunctions/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppFunctions/ConsoleAppFunctions/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppInheritance/.vs/ConsoleAppInheritance/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppInheritance/.vs/ConsoleAppInheritance/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppInheritance/ConsoleAppInheritance.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppInheritance/ConsoleAppInheritance.sln -------------------------------------------------------------------------------- /ConsoleAppInheritance/ConsoleAppInheritance/ConsoleAppInheritance.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppInheritance/ConsoleAppInheritance/ConsoleAppInheritance.csproj -------------------------------------------------------------------------------- /ConsoleAppInheritance/ConsoleAppInheritance/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppInheritance/ConsoleAppInheritance/Program.cs -------------------------------------------------------------------------------- /ConsoleAppInheritance/ConsoleAppInheritance/obj/Debug/netcoreapp3.1/ConsoleAppInheritance.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | aac1bc35b87a7d5f374fd668830c273c204b3ff7 2 | -------------------------------------------------------------------------------- /ConsoleAppInheritance/ConsoleAppInheritance/obj/Debug/netcoreapp3.1/ConsoleAppInheritance.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppInheritance/ConsoleAppInheritance/obj/Debug/netcoreapp3.1/ConsoleAppInheritance.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppInheritance/ConsoleAppInheritance/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppInheritance/ConsoleAppInheritance/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppInheritance/ConsoleAppInheritance/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppInheritance/ConsoleAppInheritance/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppInterface/.vs/ConsoleAppInterface/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppInterface/.vs/ConsoleAppInterface/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ConsoleAppInterface/.vs/ConsoleAppInterface/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppInterface/.vs/ConsoleAppInterface/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppInterface/ConsoleAppInterface.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppInterface/ConsoleAppInterface.sln -------------------------------------------------------------------------------- /ConsoleAppInterface/ConsoleAppInterface/ConsoleAppInterface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppInterface/ConsoleAppInterface/ConsoleAppInterface.csproj -------------------------------------------------------------------------------- /ConsoleAppInterface/ConsoleAppInterface/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppInterface/ConsoleAppInterface/Program.cs -------------------------------------------------------------------------------- /ConsoleAppInterface/ConsoleAppInterface/obj/Debug/netcoreapp3.1/ConsoleAppInterface.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7dc9f6c551dfd47cf8ba59fb1182aa77e1778107 2 | -------------------------------------------------------------------------------- /ConsoleAppInterface/ConsoleAppInterface/obj/Debug/netcoreapp3.1/ConsoleAppInterface.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppInterface/ConsoleAppInterface/obj/Debug/netcoreapp3.1/ConsoleAppInterface.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppInterface/ConsoleAppInterface/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppInterface/ConsoleAppInterface/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppInterface/ConsoleAppInterface/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppInterface/ConsoleAppInterface/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppNameSpace/.vs/ConsoleAppNameSpace/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppNameSpace/.vs/ConsoleAppNameSpace/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ConsoleAppNameSpace/.vs/ConsoleAppNameSpace/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppNameSpace/.vs/ConsoleAppNameSpace/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppNameSpace/ConsoleAppNameSpace.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppNameSpace/ConsoleAppNameSpace.sln -------------------------------------------------------------------------------- /ConsoleAppNameSpace/ConsoleAppNameSpace/ConsoleAppNameSpace.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppNameSpace/ConsoleAppNameSpace/ConsoleAppNameSpace.csproj -------------------------------------------------------------------------------- /ConsoleAppNameSpace/ConsoleAppNameSpace/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppNameSpace/ConsoleAppNameSpace/Program.cs -------------------------------------------------------------------------------- /ConsoleAppNameSpace/ConsoleAppNameSpace/obj/Debug/netcoreapp3.1/ConsoleAppNameSpace.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 707d538ea4189dfd9562213953309f4595e8aa9d 2 | -------------------------------------------------------------------------------- /ConsoleAppNameSpace/ConsoleAppNameSpace/obj/Debug/netcoreapp3.1/ConsoleAppNameSpace.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppNameSpace/ConsoleAppNameSpace/obj/Debug/netcoreapp3.1/ConsoleAppNameSpace.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppNameSpace/ConsoleAppNameSpace/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppNameSpace/ConsoleAppNameSpace/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppNameSpace/ConsoleAppNameSpace/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppNameSpace/ConsoleAppNameSpace/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppOOP/.vs/ConsoleAppOOP/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOOP/.vs/ConsoleAppOOP/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ConsoleAppOOP/.vs/ConsoleAppOOP/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOOP/.vs/ConsoleAppOOP/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppOOP/ConsoleAppOOP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOOP/ConsoleAppOOP.sln -------------------------------------------------------------------------------- /ConsoleAppOOP/ConsoleAppOOP/ConsoleAppOOP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOOP/ConsoleAppOOP/ConsoleAppOOP.csproj -------------------------------------------------------------------------------- /ConsoleAppOOP/ConsoleAppOOP/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOOP/ConsoleAppOOP/Program.cs -------------------------------------------------------------------------------- /ConsoleAppOOP/ConsoleAppOOP/bin/Debug/netcoreapp3.1/ConsoleAppOOP.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOOP/ConsoleAppOOP/bin/Debug/netcoreapp3.1/ConsoleAppOOP.deps.json -------------------------------------------------------------------------------- /ConsoleAppOOP/ConsoleAppOOP/bin/Debug/netcoreapp3.1/ConsoleAppOOP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOOP/ConsoleAppOOP/bin/Debug/netcoreapp3.1/ConsoleAppOOP.dll -------------------------------------------------------------------------------- /ConsoleAppOOP/ConsoleAppOOP/bin/Debug/netcoreapp3.1/ConsoleAppOOP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOOP/ConsoleAppOOP/bin/Debug/netcoreapp3.1/ConsoleAppOOP.exe -------------------------------------------------------------------------------- /ConsoleAppOOP/ConsoleAppOOP/bin/Debug/netcoreapp3.1/ConsoleAppOOP.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOOP/ConsoleAppOOP/bin/Debug/netcoreapp3.1/ConsoleAppOOP.pdb -------------------------------------------------------------------------------- /ConsoleAppOOP/ConsoleAppOOP/obj/ConsoleAppOOP.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOOP/ConsoleAppOOP/obj/ConsoleAppOOP.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ConsoleAppOOP/ConsoleAppOOP/obj/ConsoleAppOOP.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOOP/ConsoleAppOOP/obj/ConsoleAppOOP.csproj.nuget.g.props -------------------------------------------------------------------------------- /ConsoleAppOOP/ConsoleAppOOP/obj/ConsoleAppOOP.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOOP/ConsoleAppOOP/obj/ConsoleAppOOP.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ConsoleAppOOP/ConsoleAppOOP/obj/Debug/netcoreapp3.1/ConsoleAppOOP.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppOOP/ConsoleAppOOP/obj/Debug/netcoreapp3.1/ConsoleAppOOP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOOP/ConsoleAppOOP/obj/Debug/netcoreapp3.1/ConsoleAppOOP.dll -------------------------------------------------------------------------------- /ConsoleAppOOP/ConsoleAppOOP/obj/Debug/netcoreapp3.1/ConsoleAppOOP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOOP/ConsoleAppOOP/obj/Debug/netcoreapp3.1/ConsoleAppOOP.exe -------------------------------------------------------------------------------- /ConsoleAppOOP/ConsoleAppOOP/obj/Debug/netcoreapp3.1/ConsoleAppOOP.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppOOP/ConsoleAppOOP/obj/Debug/netcoreapp3.1/ConsoleAppOOP.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOOP/ConsoleAppOOP/obj/Debug/netcoreapp3.1/ConsoleAppOOP.pdb -------------------------------------------------------------------------------- /ConsoleAppOOP/ConsoleAppOOP/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOOP/ConsoleAppOOP/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppOOP/ConsoleAppOOP/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOOP/ConsoleAppOOP/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppOverLoading/.vs/ConsoleAppOverLoading/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOverLoading/.vs/ConsoleAppOverLoading/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ConsoleAppOverLoading/.vs/ConsoleAppOverLoading/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOverLoading/.vs/ConsoleAppOverLoading/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppOverLoading/ConsoleAppOverLoading.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOverLoading/ConsoleAppOverLoading.sln -------------------------------------------------------------------------------- /ConsoleAppOverLoading/ConsoleAppOverLoading/ConsoleAppOverLoading.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOverLoading/ConsoleAppOverLoading/ConsoleAppOverLoading.csproj -------------------------------------------------------------------------------- /ConsoleAppOverLoading/ConsoleAppOverLoading/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOverLoading/ConsoleAppOverLoading/Program.cs -------------------------------------------------------------------------------- /ConsoleAppOverLoading/ConsoleAppOverLoading/obj/Debug/netcoreapp3.1/ConsoleAppOverLoading.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f795a8f9db538250a3464578fd107f96ae0b6049 2 | -------------------------------------------------------------------------------- /ConsoleAppOverLoading/ConsoleAppOverLoading/obj/Debug/netcoreapp3.1/ConsoleAppOverLoading.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppOverLoading/ConsoleAppOverLoading/obj/Debug/netcoreapp3.1/ConsoleAppOverLoading.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppOverLoading/ConsoleAppOverLoading/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOverLoading/ConsoleAppOverLoading/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppOverLoading/ConsoleAppOverLoading/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOverLoading/ConsoleAppOverLoading/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppOverriding/.vs/ConsoleAppOverriding/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOverriding/.vs/ConsoleAppOverriding/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ConsoleAppOverriding/.vs/ConsoleAppOverriding/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOverriding/.vs/ConsoleAppOverriding/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppOverriding/ConsoleAppOverriding.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOverriding/ConsoleAppOverriding.sln -------------------------------------------------------------------------------- /ConsoleAppOverriding/ConsoleAppOverriding/ConsoleAppOverriding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOverriding/ConsoleAppOverriding/ConsoleAppOverriding.csproj -------------------------------------------------------------------------------- /ConsoleAppOverriding/ConsoleAppOverriding/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOverriding/ConsoleAppOverriding/Program.cs -------------------------------------------------------------------------------- /ConsoleAppOverriding/ConsoleAppOverriding/obj/Debug/netcoreapp3.1/ConsoleAppOverriding.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 9a201c6e4826427a6982f8e9da39ead96ae28f1f 2 | -------------------------------------------------------------------------------- /ConsoleAppOverriding/ConsoleAppOverriding/obj/Debug/netcoreapp3.1/ConsoleAppOverriding.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppOverriding/ConsoleAppOverriding/obj/Debug/netcoreapp3.1/ConsoleAppOverriding.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppOverriding/ConsoleAppOverriding/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOverriding/ConsoleAppOverriding/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppOverriding/ConsoleAppOverriding/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppOverriding/ConsoleAppOverriding/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppPolymorphisim/.vs/ConsoleAppPolymorphisim/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppPolymorphisim/.vs/ConsoleAppPolymorphisim/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppPolymorphisim/ConsoleAppPolymorphisim.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppPolymorphisim/ConsoleAppPolymorphisim.sln -------------------------------------------------------------------------------- /ConsoleAppPolymorphisim/ConsoleAppPolymorphisim/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppPolymorphisim/ConsoleAppPolymorphisim/Program.cs -------------------------------------------------------------------------------- /ConsoleAppPolymorphisim/ConsoleAppPolymorphisim/obj/Debug/netcoreapp3.1/ConsoleAppPolymorphisim.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | de6f7e371f4d44dc5e7f9d5e7588a63b7e9fd01b 2 | -------------------------------------------------------------------------------- /ConsoleAppPolymorphisim/ConsoleAppPolymorphisim/obj/Debug/netcoreapp3.1/ConsoleAppPolymorphisim.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppPolymorphisim/ConsoleAppPolymorphisim/obj/Debug/netcoreapp3.1/ConsoleAppPolymorphisim.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppPolymorphisim/ConsoleAppPolymorphisim/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppPolymorphisim/ConsoleAppPolymorphisim/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppPolymorphisim/ConsoleAppPolymorphisim/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppPolymorphisim/ConsoleAppPolymorphisim/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppSealed/.vs/ConsoleAppSealed/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppSealed/.vs/ConsoleAppSealed/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ConsoleAppSealed/.vs/ConsoleAppSealed/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppSealed/.vs/ConsoleAppSealed/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppSealed/ConsoleAppSealed.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppSealed/ConsoleAppSealed.sln -------------------------------------------------------------------------------- /ConsoleAppSealed/ConsoleAppSealed/ConsoleAppSealed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppSealed/ConsoleAppSealed/ConsoleAppSealed.csproj -------------------------------------------------------------------------------- /ConsoleAppSealed/ConsoleAppSealed/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppSealed/ConsoleAppSealed/Program.cs -------------------------------------------------------------------------------- /ConsoleAppSealed/ConsoleAppSealed/obj/ConsoleAppSealed.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppSealed/ConsoleAppSealed/obj/ConsoleAppSealed.csproj.nuget.g.props -------------------------------------------------------------------------------- /ConsoleAppSealed/ConsoleAppSealed/obj/Debug/netcoreapp3.1/ConsoleAppSealed.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 394b32b3175e6847904254e286f84a06ec21756b 2 | -------------------------------------------------------------------------------- /ConsoleAppSealed/ConsoleAppSealed/obj/Debug/netcoreapp3.1/ConsoleAppSealed.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppSealed/ConsoleAppSealed/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppSealed/ConsoleAppSealed/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppSealed/ConsoleAppSealed/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppSealed/ConsoleAppSealed/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppStaticKeyword/.vs/ConsoleAppStaticKeyword/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppStaticKeyword/.vs/ConsoleAppStaticKeyword/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppStaticKeyword/ConsoleAppStaticKeyword.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppStaticKeyword/ConsoleAppStaticKeyword.sln -------------------------------------------------------------------------------- /ConsoleAppStaticKeyword/ConsoleAppStaticKeyword/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppStaticKeyword/ConsoleAppStaticKeyword/Program.cs -------------------------------------------------------------------------------- /ConsoleAppStaticKeyword/ConsoleAppStaticKeyword/obj/Debug/netcoreapp3.1/ConsoleAppStaticKeyword.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f31d609e2b1f580ba9fa48000320a05572e9bf7e 2 | -------------------------------------------------------------------------------- /ConsoleAppStaticKeyword/ConsoleAppStaticKeyword/obj/Debug/netcoreapp3.1/ConsoleAppStaticKeyword.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppStaticKeyword/ConsoleAppStaticKeyword/obj/Debug/netcoreapp3.1/ConsoleAppStaticKeyword.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppStaticKeyword/ConsoleAppStaticKeyword/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppStaticKeyword/ConsoleAppStaticKeyword/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppStaticKeyword/ConsoleAppStaticKeyword/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppStaticKeyword/ConsoleAppStaticKeyword/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppStruct/.vs/ConsoleAppStruct/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppStruct/.vs/ConsoleAppStruct/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ConsoleAppStruct/.vs/ConsoleAppStruct/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppStruct/.vs/ConsoleAppStruct/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppStruct/ConsoleAppStruct.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppStruct/ConsoleAppStruct.sln -------------------------------------------------------------------------------- /ConsoleAppStruct/ConsoleAppStruct/ConsoleAppStruct.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppStruct/ConsoleAppStruct/ConsoleAppStruct.csproj -------------------------------------------------------------------------------- /ConsoleAppStruct/ConsoleAppStruct/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppStruct/ConsoleAppStruct/Program.cs -------------------------------------------------------------------------------- /ConsoleAppStruct/ConsoleAppStruct/obj/Debug/netcoreapp3.1/ConsoleAppStruct.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ed4e499935774ddffd38e816c6837a98416896c0 2 | -------------------------------------------------------------------------------- /ConsoleAppStruct/ConsoleAppStruct/obj/Debug/netcoreapp3.1/ConsoleAppStruct.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppStruct/ConsoleAppStruct/obj/Debug/netcoreapp3.1/ConsoleAppStruct.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppStruct/ConsoleAppStruct/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppStruct/ConsoleAppStruct/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppStruct/ConsoleAppStruct/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppStruct/ConsoleAppStruct/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleAppSysException/.vs/ConsoleAppSysException/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppSysException/.vs/ConsoleAppSysException/v16/.suo -------------------------------------------------------------------------------- /ConsoleAppSysException/ConsoleAppSysException.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppSysException/ConsoleAppSysException.sln -------------------------------------------------------------------------------- /ConsoleAppSysException/ConsoleAppSysException/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppSysException/ConsoleAppSysException/Program.cs -------------------------------------------------------------------------------- /ConsoleAppSysException/ConsoleAppSysException/obj/Debug/netcoreapp3.1/ConsoleAppSysException.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 91e897562b46c927a5d968f9d1c9e4b7164aa1ee 2 | -------------------------------------------------------------------------------- /ConsoleAppSysException/ConsoleAppSysException/obj/Debug/netcoreapp3.1/ConsoleAppSysException.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleAppSysException/ConsoleAppSysException/obj/Debug/netcoreapp3.1/ConsoleAppSysException.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleAppSysException/ConsoleAppSysException/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppSysException/ConsoleAppSysException/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleAppSysException/ConsoleAppSysException/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleAppSysException/ConsoleAppSysException/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleCallByValue/.vs/ConsoleCallByValue/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleCallByValue/.vs/ConsoleCallByValue/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ConsoleCallByValue/.vs/ConsoleCallByValue/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleCallByValue/.vs/ConsoleCallByValue/v16/.suo -------------------------------------------------------------------------------- /ConsoleCallByValue/ConsoleCallByValue.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleCallByValue/ConsoleCallByValue.sln -------------------------------------------------------------------------------- /ConsoleCallByValue/ConsoleCallByValue/ConsoleCallByValue.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleCallByValue/ConsoleCallByValue/ConsoleCallByValue.csproj -------------------------------------------------------------------------------- /ConsoleCallByValue/ConsoleCallByValue/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleCallByValue/ConsoleCallByValue/Program.cs -------------------------------------------------------------------------------- /ConsoleCallByValue/ConsoleCallByValue/obj/Debug/netcoreapp3.1/ConsoleCallByValue.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 1dbb4d9413cd7fafc9daf1c6af626ce3c7a03970 2 | -------------------------------------------------------------------------------- /ConsoleCallByValue/ConsoleCallByValue/obj/Debug/netcoreapp3.1/ConsoleCallByValue.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleCallByValue/ConsoleCallByValue/obj/Debug/netcoreapp3.1/ConsoleCallByValue.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleCallByValue/ConsoleCallByValue/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleCallByValue/ConsoleCallByValue/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleCallByValue/ConsoleCallByValue/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleCallByValue/ConsoleCallByValue/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleForeachLoop/.vs/ConsoleForeachLoop/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleForeachLoop/.vs/ConsoleForeachLoop/v16/.suo -------------------------------------------------------------------------------- /ConsoleForeachLoop/ConsoleForeachLoop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleForeachLoop/ConsoleForeachLoop.sln -------------------------------------------------------------------------------- /ConsoleForeachLoop/ConsoleForeachLoop/ConsoleForeachLoop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleForeachLoop/ConsoleForeachLoop/ConsoleForeachLoop.csproj -------------------------------------------------------------------------------- /ConsoleForeachLoop/ConsoleForeachLoop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleForeachLoop/ConsoleForeachLoop/Program.cs -------------------------------------------------------------------------------- /ConsoleForeachLoop/ConsoleForeachLoop/obj/Debug/netcoreapp3.1/ConsoleForeachLoop.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | de647b4fd33a54d8d59d9a4d0d466d62427bc899 2 | -------------------------------------------------------------------------------- /ConsoleForeachLoop/ConsoleForeachLoop/obj/Debug/netcoreapp3.1/ConsoleForeachLoop.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleForeachLoop/ConsoleForeachLoop/obj/Debug/netcoreapp3.1/ConsoleForeachLoop.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleForeachLoop/ConsoleForeachLoop/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleForeachLoop/ConsoleForeachLoop/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleForeachLoop/ConsoleForeachLoop/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleForeachLoop/ConsoleForeachLoop/obj/project.nuget.cache -------------------------------------------------------------------------------- /ConsoleWhileLoop/.vs/ConsoleWhileLoop/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleWhileLoop/.vs/ConsoleWhileLoop/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ConsoleWhileLoop/.vs/ConsoleWhileLoop/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleWhileLoop/.vs/ConsoleWhileLoop/v16/.suo -------------------------------------------------------------------------------- /ConsoleWhileLoop/ConsoleWhileLoop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleWhileLoop/ConsoleWhileLoop.sln -------------------------------------------------------------------------------- /ConsoleWhileLoop/ConsoleWhileLoop/ConsoleWhileLoop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleWhileLoop/ConsoleWhileLoop/ConsoleWhileLoop.csproj -------------------------------------------------------------------------------- /ConsoleWhileLoop/ConsoleWhileLoop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleWhileLoop/ConsoleWhileLoop/Program.cs -------------------------------------------------------------------------------- /ConsoleWhileLoop/ConsoleWhileLoop/obj/Debug/netcoreapp3.1/ConsoleWhileLoop.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f20f4478726ddda305dea8bce0a3538f5d956e77 2 | -------------------------------------------------------------------------------- /ConsoleWhileLoop/ConsoleWhileLoop/obj/Debug/netcoreapp3.1/ConsoleWhileLoop.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ConsoleWhileLoop/ConsoleWhileLoop/obj/Debug/netcoreapp3.1/ConsoleWhileLoop.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ConsoleWhileLoop/ConsoleWhileLoop/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleWhileLoop/ConsoleWhileLoop/obj/project.assets.json -------------------------------------------------------------------------------- /ConsoleWhileLoop/ConsoleWhileLoop/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ConsoleWhileLoop/ConsoleWhileLoop/obj/project.nuget.cache -------------------------------------------------------------------------------- /CsharpMultithreading/.vs/CsharpMultithreading/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/CsharpMultithreading/.vs/CsharpMultithreading/v16/.suo -------------------------------------------------------------------------------- /CsharpMultithreading/CsharpMultithreading.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/CsharpMultithreading/CsharpMultithreading.sln -------------------------------------------------------------------------------- /CsharpMultithreading/CsharpMultithreading/CsharpMultithreading.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/CsharpMultithreading/CsharpMultithreading/CsharpMultithreading.csproj -------------------------------------------------------------------------------- /CsharpMultithreading/CsharpMultithreading/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/CsharpMultithreading/CsharpMultithreading/Program.cs -------------------------------------------------------------------------------- /CsharpMultithreading/CsharpMultithreading/obj/Debug/netcoreapp3.1/CsharpMultithreading.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 573ec3098bb24bfa957e0844cc9f0021c9fd7afc 2 | -------------------------------------------------------------------------------- /CsharpMultithreading/CsharpMultithreading/obj/Debug/netcoreapp3.1/CsharpMultithreading.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /CsharpMultithreading/CsharpMultithreading/obj/Debug/netcoreapp3.1/CsharpMultithreading.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /CsharpMultithreading/CsharpMultithreading/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/CsharpMultithreading/CsharpMultithreading/obj/project.assets.json -------------------------------------------------------------------------------- /CsharpMultithreading/CsharpMultithreading/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/CsharpMultithreading/CsharpMultithreading/obj/project.nuget.cache -------------------------------------------------------------------------------- /DateAndTime/.vs/DateAndTime/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/DateAndTime/.vs/DateAndTime/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /DateAndTime/.vs/DateAndTime/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/DateAndTime/.vs/DateAndTime/v16/.suo -------------------------------------------------------------------------------- /DateAndTime/DateAndTime.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/DateAndTime/DateAndTime.sln -------------------------------------------------------------------------------- /DateAndTime/DateAndTime/DateAndTime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/DateAndTime/DateAndTime/DateAndTime.csproj -------------------------------------------------------------------------------- /DateAndTime/DateAndTime/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/DateAndTime/DateAndTime/Program.cs -------------------------------------------------------------------------------- /DateAndTime/DateAndTime/bin/Debug/netcoreapp3.1/DateAndTime.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/DateAndTime/DateAndTime/bin/Debug/netcoreapp3.1/DateAndTime.deps.json -------------------------------------------------------------------------------- /DateAndTime/DateAndTime/bin/Debug/netcoreapp3.1/DateAndTime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/DateAndTime/DateAndTime/bin/Debug/netcoreapp3.1/DateAndTime.dll -------------------------------------------------------------------------------- /DateAndTime/DateAndTime/bin/Debug/netcoreapp3.1/DateAndTime.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/DateAndTime/DateAndTime/bin/Debug/netcoreapp3.1/DateAndTime.exe -------------------------------------------------------------------------------- /DateAndTime/DateAndTime/bin/Debug/netcoreapp3.1/DateAndTime.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/DateAndTime/DateAndTime/bin/Debug/netcoreapp3.1/DateAndTime.pdb -------------------------------------------------------------------------------- /DateAndTime/DateAndTime/obj/DateAndTime.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/DateAndTime/DateAndTime/obj/DateAndTime.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /DateAndTime/DateAndTime/obj/DateAndTime.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/DateAndTime/DateAndTime/obj/DateAndTime.csproj.nuget.g.props -------------------------------------------------------------------------------- /DateAndTime/DateAndTime/obj/DateAndTime.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/DateAndTime/DateAndTime/obj/DateAndTime.csproj.nuget.g.targets -------------------------------------------------------------------------------- /DateAndTime/DateAndTime/obj/Debug/netcoreapp3.1/DateAndTime.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 12c96ed60e71c1808c4ff315a38de635435d32f9 2 | -------------------------------------------------------------------------------- /DateAndTime/DateAndTime/obj/Debug/netcoreapp3.1/DateAndTime.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/DateAndTime/DateAndTime/obj/Debug/netcoreapp3.1/DateAndTime.assets.cache -------------------------------------------------------------------------------- /DateAndTime/DateAndTime/obj/Debug/netcoreapp3.1/DateAndTime.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /DateAndTime/DateAndTime/obj/Debug/netcoreapp3.1/DateAndTime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/DateAndTime/DateAndTime/obj/Debug/netcoreapp3.1/DateAndTime.dll -------------------------------------------------------------------------------- /DateAndTime/DateAndTime/obj/Debug/netcoreapp3.1/DateAndTime.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/DateAndTime/DateAndTime/obj/Debug/netcoreapp3.1/DateAndTime.exe -------------------------------------------------------------------------------- /DateAndTime/DateAndTime/obj/Debug/netcoreapp3.1/DateAndTime.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /DateAndTime/DateAndTime/obj/Debug/netcoreapp3.1/DateAndTime.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/DateAndTime/DateAndTime/obj/Debug/netcoreapp3.1/DateAndTime.pdb -------------------------------------------------------------------------------- /DateAndTime/DateAndTime/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/DateAndTime/DateAndTime/obj/project.assets.json -------------------------------------------------------------------------------- /DateAndTime/DateAndTime/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/DateAndTime/DateAndTime/obj/project.nuget.cache -------------------------------------------------------------------------------- /Emplyees Database/.vs/Emplyees Database/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/.vs/Emplyees Database/v16/.suo -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database.sln -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/App.config -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/App.xaml -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/App.xaml.cs -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/Employee.cs -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/EmployeeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/EmployeeRepository.cs -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/Emplyees Database.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/Emplyees Database.csproj -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/MainWindow.xaml -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/Properties/Resources.resx -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/Properties/Settings.settings -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/bin/Debug/Emplyees Database.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/bin/Debug/Emplyees Database.exe -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/bin/Debug/Emplyees Database.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/bin/Debug/Emplyees Database.pdb -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/obj/Debug/App.g.cs -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/obj/Debug/App.g.i.cs -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/obj/Debug/Emplyees Database.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f905dd12638b1fd3886cab6ce850e3fef086fbb3 2 | -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/obj/Debug/Emplyees Database.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/obj/Debug/Emplyees Database.exe -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/obj/Debug/Emplyees Database.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/obj/Debug/Emplyees Database.pdb -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/obj/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/obj/Debug/MainWindow.g.cs -------------------------------------------------------------------------------- /Emplyees Database/Emplyees Database/obj/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Emplyees Database/Emplyees Database/obj/Debug/MainWindow.g.i.cs -------------------------------------------------------------------------------- /ForLoopConsole/.vs/ForLoopConsole/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ForLoopConsole/.vs/ForLoopConsole/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ForLoopConsole/.vs/ForLoopConsole/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ForLoopConsole/.vs/ForLoopConsole/v16/.suo -------------------------------------------------------------------------------- /ForLoopConsole/ForLoopConsole.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ForLoopConsole/ForLoopConsole.sln -------------------------------------------------------------------------------- /ForLoopConsole/ForLoopConsole/ForLoopConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ForLoopConsole/ForLoopConsole/ForLoopConsole.csproj -------------------------------------------------------------------------------- /ForLoopConsole/ForLoopConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ForLoopConsole/ForLoopConsole/Program.cs -------------------------------------------------------------------------------- /ForLoopConsole/ForLoopConsole/bin/Debug/netcoreapp3.1/ForLoopConsole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ForLoopConsole/ForLoopConsole/bin/Debug/netcoreapp3.1/ForLoopConsole.dll -------------------------------------------------------------------------------- /ForLoopConsole/ForLoopConsole/bin/Debug/netcoreapp3.1/ForLoopConsole.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ForLoopConsole/ForLoopConsole/bin/Debug/netcoreapp3.1/ForLoopConsole.exe -------------------------------------------------------------------------------- /ForLoopConsole/ForLoopConsole/bin/Debug/netcoreapp3.1/ForLoopConsole.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ForLoopConsole/ForLoopConsole/bin/Debug/netcoreapp3.1/ForLoopConsole.pdb -------------------------------------------------------------------------------- /ForLoopConsole/ForLoopConsole/obj/Debug/netcoreapp3.1/ForLoopConsole.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 04defff502d3e76d6e6c35404b2973566d90ad2d 2 | -------------------------------------------------------------------------------- /ForLoopConsole/ForLoopConsole/obj/Debug/netcoreapp3.1/ForLoopConsole.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ForLoopConsole/ForLoopConsole/obj/Debug/netcoreapp3.1/ForLoopConsole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ForLoopConsole/ForLoopConsole/obj/Debug/netcoreapp3.1/ForLoopConsole.dll -------------------------------------------------------------------------------- /ForLoopConsole/ForLoopConsole/obj/Debug/netcoreapp3.1/ForLoopConsole.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ForLoopConsole/ForLoopConsole/obj/Debug/netcoreapp3.1/ForLoopConsole.exe -------------------------------------------------------------------------------- /ForLoopConsole/ForLoopConsole/obj/Debug/netcoreapp3.1/ForLoopConsole.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ForLoopConsole/ForLoopConsole/obj/Debug/netcoreapp3.1/ForLoopConsole.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ForLoopConsole/ForLoopConsole/obj/Debug/netcoreapp3.1/ForLoopConsole.pdb -------------------------------------------------------------------------------- /ForLoopConsole/ForLoopConsole/obj/ForLoopConsole.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ForLoopConsole/ForLoopConsole/obj/ForLoopConsole.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ForLoopConsole/ForLoopConsole/obj/ForLoopConsole.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ForLoopConsole/ForLoopConsole/obj/ForLoopConsole.csproj.nuget.g.props -------------------------------------------------------------------------------- /ForLoopConsole/ForLoopConsole/obj/ForLoopConsole.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ForLoopConsole/ForLoopConsole/obj/ForLoopConsole.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ForLoopConsole/ForLoopConsole/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ForLoopConsole/ForLoopConsole/obj/project.assets.json -------------------------------------------------------------------------------- /ForLoopConsole/ForLoopConsole/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ForLoopConsole/ForLoopConsole/obj/project.nuget.cache -------------------------------------------------------------------------------- /HelloWorld/.vs/HelloWorld/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/.vs/HelloWorld/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /HelloWorld/.vs/HelloWorld/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/.vs/HelloWorld/v16/.suo -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/HelloWorld.sln -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/HelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/HelloWorld/HelloWorld.csproj -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/HelloWorld/Program.cs -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/bin/Debug/netcoreapp3.1/HelloWorld.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/HelloWorld/bin/Debug/netcoreapp3.1/HelloWorld.deps.json -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/bin/Debug/netcoreapp3.1/HelloWorld.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/HelloWorld/bin/Debug/netcoreapp3.1/HelloWorld.dll -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/bin/Debug/netcoreapp3.1/HelloWorld.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/HelloWorld/bin/Debug/netcoreapp3.1/HelloWorld.exe -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/bin/Debug/netcoreapp3.1/HelloWorld.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/HelloWorld/bin/Debug/netcoreapp3.1/HelloWorld.pdb -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/obj/Debug/netcoreapp3.1/HelloWorld.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/HelloWorld/obj/Debug/netcoreapp3.1/HelloWorld.AssemblyInfo.cs -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/obj/Debug/netcoreapp3.1/HelloWorld.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0540212110c8e74e5d547a00e6fd06c3cf4fc6cb 2 | -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/obj/Debug/netcoreapp3.1/HelloWorld.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/HelloWorld/obj/Debug/netcoreapp3.1/HelloWorld.assets.cache -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/obj/Debug/netcoreapp3.1/HelloWorld.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/obj/Debug/netcoreapp3.1/HelloWorld.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/HelloWorld/obj/Debug/netcoreapp3.1/HelloWorld.dll -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/obj/Debug/netcoreapp3.1/HelloWorld.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/HelloWorld/obj/Debug/netcoreapp3.1/HelloWorld.exe -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/obj/Debug/netcoreapp3.1/HelloWorld.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/obj/Debug/netcoreapp3.1/HelloWorld.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/HelloWorld/obj/Debug/netcoreapp3.1/HelloWorld.pdb -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/obj/HelloWorld.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/HelloWorld/obj/HelloWorld.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/obj/HelloWorld.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/HelloWorld/obj/HelloWorld.csproj.nuget.g.props -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/obj/HelloWorld.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/HelloWorld/obj/HelloWorld.csproj.nuget.g.targets -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/HelloWorld/obj/project.assets.json -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/HelloWorld/HelloWorld/obj/project.nuget.cache -------------------------------------------------------------------------------- /InputUser/.vs/InputUser/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/.vs/InputUser/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /InputUser/.vs/InputUser/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/.vs/InputUser/v16/.suo -------------------------------------------------------------------------------- /InputUser/InputUser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/InputUser.sln -------------------------------------------------------------------------------- /InputUser/InputUser/InputUser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/InputUser/InputUser.csproj -------------------------------------------------------------------------------- /InputUser/InputUser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/InputUser/Program.cs -------------------------------------------------------------------------------- /InputUser/InputUser/bin/Debug/netcoreapp3.1/InputUser.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/InputUser/bin/Debug/netcoreapp3.1/InputUser.deps.json -------------------------------------------------------------------------------- /InputUser/InputUser/bin/Debug/netcoreapp3.1/InputUser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/InputUser/bin/Debug/netcoreapp3.1/InputUser.dll -------------------------------------------------------------------------------- /InputUser/InputUser/bin/Debug/netcoreapp3.1/InputUser.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/InputUser/bin/Debug/netcoreapp3.1/InputUser.exe -------------------------------------------------------------------------------- /InputUser/InputUser/bin/Debug/netcoreapp3.1/InputUser.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/InputUser/bin/Debug/netcoreapp3.1/InputUser.pdb -------------------------------------------------------------------------------- /InputUser/InputUser/bin/Debug/netcoreapp3.1/InputUser.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/InputUser/bin/Debug/netcoreapp3.1/InputUser.runtimeconfig.json -------------------------------------------------------------------------------- /InputUser/InputUser/obj/Debug/netcoreapp3.1/InputUser.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/InputUser/obj/Debug/netcoreapp3.1/InputUser.AssemblyInfo.cs -------------------------------------------------------------------------------- /InputUser/InputUser/obj/Debug/netcoreapp3.1/InputUser.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e6fe53ef5ef642d8482221ad003d3261e8ccfa82 2 | -------------------------------------------------------------------------------- /InputUser/InputUser/obj/Debug/netcoreapp3.1/InputUser.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/InputUser/obj/Debug/netcoreapp3.1/InputUser.assets.cache -------------------------------------------------------------------------------- /InputUser/InputUser/obj/Debug/netcoreapp3.1/InputUser.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /InputUser/InputUser/obj/Debug/netcoreapp3.1/InputUser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/InputUser/obj/Debug/netcoreapp3.1/InputUser.dll -------------------------------------------------------------------------------- /InputUser/InputUser/obj/Debug/netcoreapp3.1/InputUser.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/InputUser/obj/Debug/netcoreapp3.1/InputUser.exe -------------------------------------------------------------------------------- /InputUser/InputUser/obj/Debug/netcoreapp3.1/InputUser.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /InputUser/InputUser/obj/Debug/netcoreapp3.1/InputUser.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/InputUser/obj/Debug/netcoreapp3.1/InputUser.pdb -------------------------------------------------------------------------------- /InputUser/InputUser/obj/InputUser.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/InputUser/obj/InputUser.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /InputUser/InputUser/obj/InputUser.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/InputUser/obj/InputUser.csproj.nuget.g.props -------------------------------------------------------------------------------- /InputUser/InputUser/obj/InputUser.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/InputUser/obj/InputUser.csproj.nuget.g.targets -------------------------------------------------------------------------------- /InputUser/InputUser/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/InputUser/obj/project.assets.json -------------------------------------------------------------------------------- /InputUser/InputUser/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/InputUser/InputUser/obj/project.nuget.cache -------------------------------------------------------------------------------- /Operators/.vs/Operators/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/.vs/Operators/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Operators/.vs/Operators/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/.vs/Operators/v16/.suo -------------------------------------------------------------------------------- /Operators/Operators.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/Operators.sln -------------------------------------------------------------------------------- /Operators/Operators/Operators.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/Operators/Operators.csproj -------------------------------------------------------------------------------- /Operators/Operators/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/Operators/Program.cs -------------------------------------------------------------------------------- /Operators/Operators/bin/Debug/netcoreapp3.1/Operators.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/Operators/bin/Debug/netcoreapp3.1/Operators.deps.json -------------------------------------------------------------------------------- /Operators/Operators/bin/Debug/netcoreapp3.1/Operators.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/Operators/bin/Debug/netcoreapp3.1/Operators.dll -------------------------------------------------------------------------------- /Operators/Operators/bin/Debug/netcoreapp3.1/Operators.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/Operators/bin/Debug/netcoreapp3.1/Operators.exe -------------------------------------------------------------------------------- /Operators/Operators/bin/Debug/netcoreapp3.1/Operators.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/Operators/bin/Debug/netcoreapp3.1/Operators.pdb -------------------------------------------------------------------------------- /Operators/Operators/bin/Debug/netcoreapp3.1/Operators.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/Operators/bin/Debug/netcoreapp3.1/Operators.runtimeconfig.json -------------------------------------------------------------------------------- /Operators/Operators/obj/Debug/netcoreapp3.1/Operators.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/Operators/obj/Debug/netcoreapp3.1/Operators.AssemblyInfo.cs -------------------------------------------------------------------------------- /Operators/Operators/obj/Debug/netcoreapp3.1/Operators.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 24e5f4a42b19662db50a457a3ca5af44bc274323 2 | -------------------------------------------------------------------------------- /Operators/Operators/obj/Debug/netcoreapp3.1/Operators.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/Operators/obj/Debug/netcoreapp3.1/Operators.assets.cache -------------------------------------------------------------------------------- /Operators/Operators/obj/Debug/netcoreapp3.1/Operators.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /Operators/Operators/obj/Debug/netcoreapp3.1/Operators.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/Operators/obj/Debug/netcoreapp3.1/Operators.dll -------------------------------------------------------------------------------- /Operators/Operators/obj/Debug/netcoreapp3.1/Operators.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/Operators/obj/Debug/netcoreapp3.1/Operators.exe -------------------------------------------------------------------------------- /Operators/Operators/obj/Debug/netcoreapp3.1/Operators.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /Operators/Operators/obj/Debug/netcoreapp3.1/Operators.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/Operators/obj/Debug/netcoreapp3.1/Operators.pdb -------------------------------------------------------------------------------- /Operators/Operators/obj/Operators.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/Operators/obj/Operators.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Operators/Operators/obj/Operators.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/Operators/obj/Operators.csproj.nuget.g.props -------------------------------------------------------------------------------- /Operators/Operators/obj/Operators.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/Operators/obj/Operators.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Operators/Operators/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/Operators/obj/project.assets.json -------------------------------------------------------------------------------- /Operators/Operators/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Operators/Operators/obj/project.nuget.cache -------------------------------------------------------------------------------- /String/.vs/String/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/.vs/String/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /String/.vs/String/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/.vs/String/v16/.suo -------------------------------------------------------------------------------- /String/String.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String.sln -------------------------------------------------------------------------------- /String/String/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/Program.cs -------------------------------------------------------------------------------- /String/String/String.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/String.csproj -------------------------------------------------------------------------------- /String/String/bin/Debug/netcoreapp3.1/String.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/bin/Debug/netcoreapp3.1/String.deps.json -------------------------------------------------------------------------------- /String/String/bin/Debug/netcoreapp3.1/String.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/bin/Debug/netcoreapp3.1/String.dll -------------------------------------------------------------------------------- /String/String/bin/Debug/netcoreapp3.1/String.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/bin/Debug/netcoreapp3.1/String.exe -------------------------------------------------------------------------------- /String/String/bin/Debug/netcoreapp3.1/String.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/bin/Debug/netcoreapp3.1/String.pdb -------------------------------------------------------------------------------- /String/String/bin/Debug/netcoreapp3.1/String.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/bin/Debug/netcoreapp3.1/String.runtimeconfig.dev.json -------------------------------------------------------------------------------- /String/String/bin/Debug/netcoreapp3.1/String.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/bin/Debug/netcoreapp3.1/String.runtimeconfig.json -------------------------------------------------------------------------------- /String/String/obj/Debug/netcoreapp3.1/String.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/obj/Debug/netcoreapp3.1/String.AssemblyInfo.cs -------------------------------------------------------------------------------- /String/String/obj/Debug/netcoreapp3.1/String.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 39a7e5bf1da77bc6ff32b9394c93d1c8dad057c1 2 | -------------------------------------------------------------------------------- /String/String/obj/Debug/netcoreapp3.1/String.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/obj/Debug/netcoreapp3.1/String.assets.cache -------------------------------------------------------------------------------- /String/String/obj/Debug/netcoreapp3.1/String.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /String/String/obj/Debug/netcoreapp3.1/String.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/obj/Debug/netcoreapp3.1/String.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /String/String/obj/Debug/netcoreapp3.1/String.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/obj/Debug/netcoreapp3.1/String.dll -------------------------------------------------------------------------------- /String/String/obj/Debug/netcoreapp3.1/String.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/obj/Debug/netcoreapp3.1/String.exe -------------------------------------------------------------------------------- /String/String/obj/Debug/netcoreapp3.1/String.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /String/String/obj/Debug/netcoreapp3.1/String.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/obj/Debug/netcoreapp3.1/String.pdb -------------------------------------------------------------------------------- /String/String/obj/String.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/obj/String.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /String/String/obj/String.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/obj/String.csproj.nuget.g.props -------------------------------------------------------------------------------- /String/String/obj/String.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/obj/String.csproj.nuget.g.targets -------------------------------------------------------------------------------- /String/String/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/obj/project.assets.json -------------------------------------------------------------------------------- /String/String/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/String/String/obj/project.nuget.cache -------------------------------------------------------------------------------- /StringBuilder/.vs/StringBuilder/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringBuilder/.vs/StringBuilder/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /StringBuilder/.vs/StringBuilder/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringBuilder/.vs/StringBuilder/v16/.suo -------------------------------------------------------------------------------- /StringBuilder/StringBuilder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringBuilder/StringBuilder.sln -------------------------------------------------------------------------------- /StringBuilder/StringBuilder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringBuilder/StringBuilder/Program.cs -------------------------------------------------------------------------------- /StringBuilder/StringBuilder/StringBuilder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringBuilder/StringBuilder/StringBuilder.csproj -------------------------------------------------------------------------------- /StringBuilder/StringBuilder/bin/Debug/netcoreapp3.1/StringBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringBuilder/StringBuilder/bin/Debug/netcoreapp3.1/StringBuilder.dll -------------------------------------------------------------------------------- /StringBuilder/StringBuilder/bin/Debug/netcoreapp3.1/StringBuilder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringBuilder/StringBuilder/bin/Debug/netcoreapp3.1/StringBuilder.exe -------------------------------------------------------------------------------- /StringBuilder/StringBuilder/bin/Debug/netcoreapp3.1/StringBuilder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringBuilder/StringBuilder/bin/Debug/netcoreapp3.1/StringBuilder.pdb -------------------------------------------------------------------------------- /StringBuilder/StringBuilder/obj/Debug/netcoreapp3.1/StringBuilder.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 68cfc32d791f880ea9d1943ffa12f583d11646d3 2 | -------------------------------------------------------------------------------- /StringBuilder/StringBuilder/obj/Debug/netcoreapp3.1/StringBuilder.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /StringBuilder/StringBuilder/obj/Debug/netcoreapp3.1/StringBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringBuilder/StringBuilder/obj/Debug/netcoreapp3.1/StringBuilder.dll -------------------------------------------------------------------------------- /StringBuilder/StringBuilder/obj/Debug/netcoreapp3.1/StringBuilder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringBuilder/StringBuilder/obj/Debug/netcoreapp3.1/StringBuilder.exe -------------------------------------------------------------------------------- /StringBuilder/StringBuilder/obj/Debug/netcoreapp3.1/StringBuilder.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /StringBuilder/StringBuilder/obj/Debug/netcoreapp3.1/StringBuilder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringBuilder/StringBuilder/obj/Debug/netcoreapp3.1/StringBuilder.pdb -------------------------------------------------------------------------------- /StringBuilder/StringBuilder/obj/StringBuilder.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringBuilder/StringBuilder/obj/StringBuilder.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /StringBuilder/StringBuilder/obj/StringBuilder.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringBuilder/StringBuilder/obj/StringBuilder.csproj.nuget.g.props -------------------------------------------------------------------------------- /StringBuilder/StringBuilder/obj/StringBuilder.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringBuilder/StringBuilder/obj/StringBuilder.csproj.nuget.g.targets -------------------------------------------------------------------------------- /StringBuilder/StringBuilder/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringBuilder/StringBuilder/obj/project.assets.json -------------------------------------------------------------------------------- /StringBuilder/StringBuilder/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringBuilder/StringBuilder/obj/project.nuget.cache -------------------------------------------------------------------------------- /StringToOthers/.vs/StringToOthers/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringToOthers/.vs/StringToOthers/v16/.suo -------------------------------------------------------------------------------- /StringToOthers/StringToOthers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringToOthers/StringToOthers.sln -------------------------------------------------------------------------------- /StringToOthers/StringToOthers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringToOthers/StringToOthers/Program.cs -------------------------------------------------------------------------------- /StringToOthers/StringToOthers/StringToOthers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringToOthers/StringToOthers/StringToOthers.csproj -------------------------------------------------------------------------------- /StringToOthers/StringToOthers/bin/Debug/netcoreapp3.1/StringToOthers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringToOthers/StringToOthers/bin/Debug/netcoreapp3.1/StringToOthers.dll -------------------------------------------------------------------------------- /StringToOthers/StringToOthers/bin/Debug/netcoreapp3.1/StringToOthers.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringToOthers/StringToOthers/bin/Debug/netcoreapp3.1/StringToOthers.exe -------------------------------------------------------------------------------- /StringToOthers/StringToOthers/bin/Debug/netcoreapp3.1/StringToOthers.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringToOthers/StringToOthers/bin/Debug/netcoreapp3.1/StringToOthers.pdb -------------------------------------------------------------------------------- /StringToOthers/StringToOthers/obj/Debug/netcoreapp3.1/StringToOthers.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /StringToOthers/StringToOthers/obj/Debug/netcoreapp3.1/StringToOthers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringToOthers/StringToOthers/obj/Debug/netcoreapp3.1/StringToOthers.dll -------------------------------------------------------------------------------- /StringToOthers/StringToOthers/obj/Debug/netcoreapp3.1/StringToOthers.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringToOthers/StringToOthers/obj/Debug/netcoreapp3.1/StringToOthers.exe -------------------------------------------------------------------------------- /StringToOthers/StringToOthers/obj/Debug/netcoreapp3.1/StringToOthers.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /StringToOthers/StringToOthers/obj/Debug/netcoreapp3.1/StringToOthers.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringToOthers/StringToOthers/obj/Debug/netcoreapp3.1/StringToOthers.pdb -------------------------------------------------------------------------------- /StringToOthers/StringToOthers/obj/StringToOthers.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringToOthers/StringToOthers/obj/StringToOthers.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /StringToOthers/StringToOthers/obj/StringToOthers.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringToOthers/StringToOthers/obj/StringToOthers.csproj.nuget.g.props -------------------------------------------------------------------------------- /StringToOthers/StringToOthers/obj/StringToOthers.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringToOthers/StringToOthers/obj/StringToOthers.csproj.nuget.g.targets -------------------------------------------------------------------------------- /StringToOthers/StringToOthers/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringToOthers/StringToOthers/obj/project.assets.json -------------------------------------------------------------------------------- /StringToOthers/StringToOthers/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/StringToOthers/StringToOthers/obj/project.nuget.cache -------------------------------------------------------------------------------- /SwitchCase/.vs/SwitchCase/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/.vs/SwitchCase/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /SwitchCase/.vs/SwitchCase/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/.vs/SwitchCase/v16/.suo -------------------------------------------------------------------------------- /SwitchCase/SwitchCase.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/SwitchCase.sln -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/SwitchCase/Program.cs -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/SwitchCase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/SwitchCase/SwitchCase.csproj -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/bin/Debug/netcoreapp3.1/SwitchCase.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/SwitchCase/bin/Debug/netcoreapp3.1/SwitchCase.deps.json -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/bin/Debug/netcoreapp3.1/SwitchCase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/SwitchCase/bin/Debug/netcoreapp3.1/SwitchCase.dll -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/bin/Debug/netcoreapp3.1/SwitchCase.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/SwitchCase/bin/Debug/netcoreapp3.1/SwitchCase.exe -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/bin/Debug/netcoreapp3.1/SwitchCase.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/SwitchCase/bin/Debug/netcoreapp3.1/SwitchCase.pdb -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/obj/Debug/netcoreapp3.1/SwitchCase.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/SwitchCase/obj/Debug/netcoreapp3.1/SwitchCase.AssemblyInfo.cs -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/obj/Debug/netcoreapp3.1/SwitchCase.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 1a13e284968fbded86f0483ba3247bafc9cf8e98 2 | -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/obj/Debug/netcoreapp3.1/SwitchCase.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/SwitchCase/obj/Debug/netcoreapp3.1/SwitchCase.assets.cache -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/obj/Debug/netcoreapp3.1/SwitchCase.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/obj/Debug/netcoreapp3.1/SwitchCase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/SwitchCase/obj/Debug/netcoreapp3.1/SwitchCase.dll -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/obj/Debug/netcoreapp3.1/SwitchCase.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/SwitchCase/obj/Debug/netcoreapp3.1/SwitchCase.exe -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/obj/Debug/netcoreapp3.1/SwitchCase.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/obj/Debug/netcoreapp3.1/SwitchCase.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/SwitchCase/obj/Debug/netcoreapp3.1/SwitchCase.pdb -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/obj/SwitchCase.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/SwitchCase/obj/SwitchCase.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/obj/SwitchCase.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/SwitchCase/obj/SwitchCase.csproj.nuget.g.props -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/obj/SwitchCase.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/SwitchCase/obj/SwitchCase.csproj.nuget.g.targets -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/SwitchCase/obj/project.assets.json -------------------------------------------------------------------------------- /SwitchCase/SwitchCase/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/SwitchCase/SwitchCase/obj/project.nuget.cache -------------------------------------------------------------------------------- /ThisKeyword/.vs/ThisKeyword/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ThisKeyword/.vs/ThisKeyword/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ThisKeyword/.vs/ThisKeyword/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ThisKeyword/.vs/ThisKeyword/v16/.suo -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ThisKeyword/ThisKeyword.sln -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ThisKeyword/ThisKeyword/Program.cs -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword/ThisKeyword.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ThisKeyword/ThisKeyword/ThisKeyword.csproj -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword/bin/Debug/netcoreapp3.1/ThisKeyword.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ThisKeyword/ThisKeyword/bin/Debug/netcoreapp3.1/ThisKeyword.deps.json -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword/bin/Debug/netcoreapp3.1/ThisKeyword.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ThisKeyword/ThisKeyword/bin/Debug/netcoreapp3.1/ThisKeyword.dll -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword/bin/Debug/netcoreapp3.1/ThisKeyword.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ThisKeyword/ThisKeyword/bin/Debug/netcoreapp3.1/ThisKeyword.exe -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword/bin/Debug/netcoreapp3.1/ThisKeyword.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ThisKeyword/ThisKeyword/bin/Debug/netcoreapp3.1/ThisKeyword.pdb -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword/obj/Debug/netcoreapp3.1/ThisKeyword.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b937e4a92a0c8949b746b36829cfc28606c5a530 2 | -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword/obj/Debug/netcoreapp3.1/ThisKeyword.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ThisKeyword/ThisKeyword/obj/Debug/netcoreapp3.1/ThisKeyword.assets.cache -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword/obj/Debug/netcoreapp3.1/ThisKeyword.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword/obj/Debug/netcoreapp3.1/ThisKeyword.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ThisKeyword/ThisKeyword/obj/Debug/netcoreapp3.1/ThisKeyword.dll -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword/obj/Debug/netcoreapp3.1/ThisKeyword.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ThisKeyword/ThisKeyword/obj/Debug/netcoreapp3.1/ThisKeyword.exe -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword/obj/Debug/netcoreapp3.1/ThisKeyword.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword/obj/Debug/netcoreapp3.1/ThisKeyword.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ThisKeyword/ThisKeyword/obj/Debug/netcoreapp3.1/ThisKeyword.pdb -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword/obj/ThisKeyword.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ThisKeyword/ThisKeyword/obj/ThisKeyword.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword/obj/ThisKeyword.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ThisKeyword/ThisKeyword/obj/ThisKeyword.csproj.nuget.g.props -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword/obj/ThisKeyword.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ThisKeyword/ThisKeyword/obj/ThisKeyword.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ThisKeyword/ThisKeyword/obj/project.assets.json -------------------------------------------------------------------------------- /ThisKeyword/ThisKeyword/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/ThisKeyword/ThisKeyword/obj/project.nuget.cache -------------------------------------------------------------------------------- /Variables/.vs/Variables/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/.vs/Variables/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Variables/.vs/Variables/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/.vs/Variables/v16/.suo -------------------------------------------------------------------------------- /Variables/Variables.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/Variables.sln -------------------------------------------------------------------------------- /Variables/Variables/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/Variables/Program.cs -------------------------------------------------------------------------------- /Variables/Variables/Variables.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/Variables/Variables.csproj -------------------------------------------------------------------------------- /Variables/Variables/bin/Debug/netcoreapp3.1/Variables.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/Variables/bin/Debug/netcoreapp3.1/Variables.deps.json -------------------------------------------------------------------------------- /Variables/Variables/bin/Debug/netcoreapp3.1/Variables.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/Variables/bin/Debug/netcoreapp3.1/Variables.dll -------------------------------------------------------------------------------- /Variables/Variables/bin/Debug/netcoreapp3.1/Variables.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/Variables/bin/Debug/netcoreapp3.1/Variables.exe -------------------------------------------------------------------------------- /Variables/Variables/bin/Debug/netcoreapp3.1/Variables.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/Variables/bin/Debug/netcoreapp3.1/Variables.pdb -------------------------------------------------------------------------------- /Variables/Variables/bin/Debug/netcoreapp3.1/Variables.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/Variables/bin/Debug/netcoreapp3.1/Variables.runtimeconfig.json -------------------------------------------------------------------------------- /Variables/Variables/obj/Debug/netcoreapp3.1/Variables.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/Variables/obj/Debug/netcoreapp3.1/Variables.AssemblyInfo.cs -------------------------------------------------------------------------------- /Variables/Variables/obj/Debug/netcoreapp3.1/Variables.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 54ad00f584475d3619a5f2994ddc2d97fd7d80a5 2 | -------------------------------------------------------------------------------- /Variables/Variables/obj/Debug/netcoreapp3.1/Variables.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/Variables/obj/Debug/netcoreapp3.1/Variables.assets.cache -------------------------------------------------------------------------------- /Variables/Variables/obj/Debug/netcoreapp3.1/Variables.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 077edf478ac8c703940707610463479ae209b93c 2 | -------------------------------------------------------------------------------- /Variables/Variables/obj/Debug/netcoreapp3.1/Variables.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/Variables/obj/Debug/netcoreapp3.1/Variables.dll -------------------------------------------------------------------------------- /Variables/Variables/obj/Debug/netcoreapp3.1/Variables.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/Variables/obj/Debug/netcoreapp3.1/Variables.exe -------------------------------------------------------------------------------- /Variables/Variables/obj/Debug/netcoreapp3.1/Variables.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /Variables/Variables/obj/Debug/netcoreapp3.1/Variables.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/Variables/obj/Debug/netcoreapp3.1/Variables.pdb -------------------------------------------------------------------------------- /Variables/Variables/obj/Variables.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/Variables/obj/Variables.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Variables/Variables/obj/Variables.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/Variables/obj/Variables.csproj.nuget.g.props -------------------------------------------------------------------------------- /Variables/Variables/obj/Variables.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/Variables/obj/Variables.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Variables/Variables/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/Variables/obj/project.assets.json -------------------------------------------------------------------------------- /Variables/Variables/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/Variables/Variables/obj/project.nuget.cache -------------------------------------------------------------------------------- /WpfApp1/.vs/WpfApp1/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/.vs/WpfApp1/v16/.suo -------------------------------------------------------------------------------- /WpfApp1/WpfApp1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1.sln -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/App.config -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/App.xaml -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/App.xaml.cs -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/MainWindow.xaml -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/Properties/Resources.resx -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/Properties/Settings.settings -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/WpfApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/WpfApp1.csproj -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/bin/Debug/WpfApp1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/bin/Debug/WpfApp1.exe -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/bin/Debug/WpfApp1.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/bin/Debug/WpfApp1.exe.config -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/bin/Debug/WpfApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/bin/Debug/WpfApp1.pdb -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/obj/Debug/App.g.cs -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/obj/Debug/App.g.i.cs -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/obj/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/obj/Debug/MainWindow.g.cs -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/obj/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/obj/Debug/MainWindow.g.i.cs -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/obj/Debug/WpfApp1.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/obj/Debug/WpfApp1.Properties.Resources.resources -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/obj/Debug/WpfApp1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d64173442384a420f175b4bbab58ab25baa163d3 2 | -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/obj/Debug/WpfApp1.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/obj/Debug/WpfApp1.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/obj/Debug/WpfApp1.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/obj/Debug/WpfApp1.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/obj/Debug/WpfApp1.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/obj/Debug/WpfApp1.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/obj/Debug/WpfApp1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/obj/Debug/WpfApp1.exe -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/obj/Debug/WpfApp1.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/obj/Debug/WpfApp1.g.resources -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/obj/Debug/WpfApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/obj/Debug/WpfApp1.pdb -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/obj/Debug/WpfApp1_MarkupCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/obj/Debug/WpfApp1_MarkupCompile.cache -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/obj/Debug/WpfApp1_MarkupCompile.i.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/obj/Debug/WpfApp1_MarkupCompile.i.cache -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/obj/Debug/WpfApp1_MarkupCompile.i.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/obj/Debug/WpfApp1_MarkupCompile.i.lref -------------------------------------------------------------------------------- /WpfApp1/WpfApp1/obj/Debug/WpfApp1_MarkupCompile.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfApp1/WpfApp1/obj/Debug/WpfApp1_MarkupCompile.lref -------------------------------------------------------------------------------- /WpfAppDataGrid/.vs/WpfAppDataGrid/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/.vs/WpfAppDataGrid/v16/.suo -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid.sln -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/App.config -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/App.xaml -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/App.xaml.cs -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/MainWindow.xaml -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/Properties/Resources.resx -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/Properties/Settings.settings -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/WpfAppDataGrid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/WpfAppDataGrid.csproj -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/bin/Debug/WpfAppDataGrid.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/bin/Debug/WpfAppDataGrid.exe -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/bin/Debug/WpfAppDataGrid.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/bin/Debug/WpfAppDataGrid.exe.config -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/bin/Debug/WpfAppDataGrid.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/bin/Debug/WpfAppDataGrid.pdb -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/obj/Debug/App.g.cs -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/obj/Debug/App.g.i.cs -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/obj/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/obj/Debug/MainWindow.g.cs -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/obj/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/obj/Debug/MainWindow.g.i.cs -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/obj/Debug/WpfAppDataGrid.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3d325f93ddf3330998ff8365c2a8304bf02c7dae 2 | -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/obj/Debug/WpfAppDataGrid.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/obj/Debug/WpfAppDataGrid.exe -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/obj/Debug/WpfAppDataGrid.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/obj/Debug/WpfAppDataGrid.g.resources -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/obj/Debug/WpfAppDataGrid.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/obj/Debug/WpfAppDataGrid.pdb -------------------------------------------------------------------------------- /WpfAppDataGrid/WpfAppDataGrid/obj/Debug/WpfAppDataGrid_MarkupCompile.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppDataGrid/WpfAppDataGrid/obj/Debug/WpfAppDataGrid_MarkupCompile.lref -------------------------------------------------------------------------------- /WpfAppListView/.vs/WpfAppListView/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/.vs/WpfAppListView/v16/.suo -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView.sln -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/App.config -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/App.xaml -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/App.xaml.cs -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/MainWindow.xaml -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/Properties/Resources.resx -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/Properties/Settings.settings -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/WpfAppListView.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/WpfAppListView.csproj -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/bin/Debug/WpfAppListView.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/bin/Debug/WpfAppListView.exe -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/bin/Debug/WpfAppListView.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/bin/Debug/WpfAppListView.exe.config -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/bin/Debug/WpfAppListView.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/bin/Debug/WpfAppListView.pdb -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/obj/Debug/App.g.cs -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/obj/Debug/App.g.i.cs -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/obj/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/obj/Debug/MainWindow.g.cs -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/obj/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/obj/Debug/MainWindow.g.i.cs -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/obj/Debug/WpfAppListView.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2576e959c54260d3a6944b720a6473668071ee7e 2 | -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/obj/Debug/WpfAppListView.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/obj/Debug/WpfAppListView.exe -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/obj/Debug/WpfAppListView.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/obj/Debug/WpfAppListView.g.resources -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/obj/Debug/WpfAppListView.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/obj/Debug/WpfAppListView.pdb -------------------------------------------------------------------------------- /WpfAppListView/WpfAppListView/obj/Debug/WpfAppListView_MarkupCompile.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListView/WpfAppListView/obj/Debug/WpfAppListView_MarkupCompile.lref -------------------------------------------------------------------------------- /WpfAppListViewGridView/.vs/WpfAppListViewGridView/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListViewGridView/.vs/WpfAppListViewGridView/v16/.suo -------------------------------------------------------------------------------- /WpfAppListViewGridView/WpfAppListViewGridView.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListViewGridView/WpfAppListViewGridView.sln -------------------------------------------------------------------------------- /WpfAppListViewGridView/WpfAppListViewGridView/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListViewGridView/WpfAppListViewGridView/App.config -------------------------------------------------------------------------------- /WpfAppListViewGridView/WpfAppListViewGridView/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListViewGridView/WpfAppListViewGridView/App.xaml -------------------------------------------------------------------------------- /WpfAppListViewGridView/WpfAppListViewGridView/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListViewGridView/WpfAppListViewGridView/App.xaml.cs -------------------------------------------------------------------------------- /WpfAppListViewGridView/WpfAppListViewGridView/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListViewGridView/WpfAppListViewGridView/MainWindow.xaml -------------------------------------------------------------------------------- /WpfAppListViewGridView/WpfAppListViewGridView/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListViewGridView/WpfAppListViewGridView/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WpfAppListViewGridView/WpfAppListViewGridView/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListViewGridView/WpfAppListViewGridView/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WpfAppListViewGridView/WpfAppListViewGridView/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListViewGridView/WpfAppListViewGridView/Properties/Resources.resx -------------------------------------------------------------------------------- /WpfAppListViewGridView/WpfAppListViewGridView/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListViewGridView/WpfAppListViewGridView/obj/Debug/App.g.cs -------------------------------------------------------------------------------- /WpfAppListViewGridView/WpfAppListViewGridView/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListViewGridView/WpfAppListViewGridView/obj/Debug/App.g.i.cs -------------------------------------------------------------------------------- /WpfAppListViewGridView/WpfAppListViewGridView/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListViewGridView/WpfAppListViewGridView/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /WpfAppListViewGridView/WpfAppListViewGridView/obj/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListViewGridView/WpfAppListViewGridView/obj/Debug/MainWindow.g.cs -------------------------------------------------------------------------------- /WpfAppListViewGridView/WpfAppListViewGridView/obj/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfAppListViewGridView/WpfAppListViewGridView/obj/Debug/MainWindow.g.i.cs -------------------------------------------------------------------------------- /WpfGroupBox/.vs/WpfGroupBox/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/.vs/WpfGroupBox/v16/.suo -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox.sln -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/App.config -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/App.xaml -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/App.xaml.cs -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/MainWindow.xaml -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/Properties/Resources.resx -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/Properties/Settings.settings -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/WpfGroupBox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/WpfGroupBox.csproj -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/bin/Debug/WpfGroupBox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/bin/Debug/WpfGroupBox.exe -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/bin/Debug/WpfGroupBox.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/bin/Debug/WpfGroupBox.exe.config -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/bin/Debug/WpfGroupBox.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/bin/Debug/WpfGroupBox.pdb -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/obj/Debug/App.g.cs -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/obj/Debug/App.g.i.cs -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/obj/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/obj/Debug/MainWindow.g.cs -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/obj/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/obj/Debug/MainWindow.g.i.cs -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/obj/Debug/WpfGroupBox.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | da44105abc9114094710900ef8c883cf24636353 2 | -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/obj/Debug/WpfGroupBox.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/obj/Debug/WpfGroupBox.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/obj/Debug/WpfGroupBox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/obj/Debug/WpfGroupBox.exe -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/obj/Debug/WpfGroupBox.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/obj/Debug/WpfGroupBox.g.resources -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/obj/Debug/WpfGroupBox.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/obj/Debug/WpfGroupBox.pdb -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/obj/Debug/WpfGroupBox_MarkupCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/obj/Debug/WpfGroupBox_MarkupCompile.cache -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/obj/Debug/WpfGroupBox_MarkupCompile.i.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/obj/Debug/WpfGroupBox_MarkupCompile.i.cache -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/obj/Debug/WpfGroupBox_MarkupCompile.i.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/obj/Debug/WpfGroupBox_MarkupCompile.i.lref -------------------------------------------------------------------------------- /WpfGroupBox/WpfGroupBox/obj/Debug/WpfGroupBox_MarkupCompile.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedessa/C_sharp/HEAD/WpfGroupBox/WpfGroupBox/obj/Debug/WpfGroupBox_MarkupCompile.lref --------------------------------------------------------------------------------