diff --git a/Arrays/Program.cs b/Arrays/Program.cs deleted file mode 100644 index eaeae0f..0000000 --- a/Arrays/Program.cs +++ /dev/null @@ -1,47 +0,0 @@ -using System; - -namespace Arrays -{ - class Program - { - static void Main(string[] args) - { - //Dizi Tanımlama - string[] colors = new string[5]; - - string[] animals = { "cat, dog, bird, monkey" }; - - int[] array; - array = new int[5]; - - //Assigning and accessing arrays - colors[0] = "blue"; - Console.WriteLine(animals[0]); - array[3] = 10; - - Console.WriteLine(animals[0]); - Console.WriteLine(colors[0]); - - //Using arrays with the loops - - Console.WriteLine("Please enter the number of elements of the array"); - int arrayLength = int.Parse(Console.ReadLine()); - int[] arrayOfNumber = new int[arrayLength]; - - for (int i = 0; i < arrayLength; i++) - { - Console.WriteLine("Please enter a {0}. number", i + 1); - arrayOfNumber[i] = int.Parse(Console.ReadLine()); - } - - int total = 0; - - foreach (var number in arrayOfNumber) - { - total += number; - } - - Console.WriteLine("Average :" + total/arrayLength); - } - } -} diff --git a/Arrays/bin/Debug/net5.0/Arrays.deps.json b/Arrays/bin/Debug/net5.0/Arrays.deps.json deleted file mode 100644 index 21c37cd..0000000 --- a/Arrays/bin/Debug/net5.0/Arrays.deps.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v5.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v5.0": { - "Arrays/1.0.0": { - "runtime": { - "Arrays.dll": {} - } - } - } - }, - "libraries": { - "Arrays/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/Arrays/bin/Debug/net5.0/Arrays.dll b/Arrays/bin/Debug/net5.0/Arrays.dll deleted file mode 100644 index df189da..0000000 Binary files a/Arrays/bin/Debug/net5.0/Arrays.dll and /dev/null differ diff --git a/Arrays/bin/Debug/net5.0/Arrays.exe b/Arrays/bin/Debug/net5.0/Arrays.exe deleted file mode 100644 index c890fd9..0000000 Binary files a/Arrays/bin/Debug/net5.0/Arrays.exe and /dev/null differ diff --git a/Arrays/bin/Debug/net5.0/Arrays.pdb b/Arrays/bin/Debug/net5.0/Arrays.pdb deleted file mode 100644 index 0f7e6ab..0000000 Binary files a/Arrays/bin/Debug/net5.0/Arrays.pdb and /dev/null differ diff --git a/Arrays/bin/Debug/net5.0/ref/Arrays.dll b/Arrays/bin/Debug/net5.0/ref/Arrays.dll deleted file mode 100644 index 8a5ed83..0000000 Binary files a/Arrays/bin/Debug/net5.0/ref/Arrays.dll and /dev/null differ diff --git a/Arrays/obj/Arrays.csproj.nuget.dgspec.json b/Arrays/obj/Arrays.csproj.nuget.dgspec.json deleted file mode 100644 index 4c12c24..0000000 --- a/Arrays/obj/Arrays.csproj.nuget.dgspec.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\users\\tednokent\\Csharp\\pDev\\Arrays\\Arrays.csproj": {} - }, - "projects": { - "D:\\users\\tednokent\\Csharp\\pDev\\Arrays\\Arrays.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\users\\tednokent\\Csharp\\pDev\\Arrays\\Arrays.csproj", - "projectName": "Arrays", - "projectPath": "D:\\users\\tednokent\\Csharp\\pDev\\Arrays\\Arrays.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\users\\tednokent\\Csharp\\pDev\\Arrays\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/Arrays/obj/Debug/net5.0/Arrays.AssemblyInfoInputs.cache b/Arrays/obj/Debug/net5.0/Arrays.AssemblyInfoInputs.cache deleted file mode 100644 index b064707..0000000 --- a/Arrays/obj/Debug/net5.0/Arrays.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -21c0ba7ac2d74f465199c25399ba2a5cd8da400b diff --git a/Arrays/obj/Debug/net5.0/Arrays.assets.cache b/Arrays/obj/Debug/net5.0/Arrays.assets.cache deleted file mode 100644 index 714f11d..0000000 Binary files a/Arrays/obj/Debug/net5.0/Arrays.assets.cache and /dev/null differ diff --git a/Arrays/obj/Debug/net5.0/Arrays.csproj.AssemblyReference.cache b/Arrays/obj/Debug/net5.0/Arrays.csproj.AssemblyReference.cache deleted file mode 100644 index d29614d..0000000 Binary files a/Arrays/obj/Debug/net5.0/Arrays.csproj.AssemblyReference.cache and /dev/null differ diff --git a/Arrays/obj/Debug/net5.0/Arrays.csproj.CoreCompileInputs.cache b/Arrays/obj/Debug/net5.0/Arrays.csproj.CoreCompileInputs.cache deleted file mode 100644 index dce1820..0000000 --- a/Arrays/obj/Debug/net5.0/Arrays.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -b9a474ddf8924f4134e881ba03f48c982be98169 diff --git a/Arrays/obj/Debug/net5.0/Arrays.csproj.FileListAbsolute.txt b/Arrays/obj/Debug/net5.0/Arrays.csproj.FileListAbsolute.txt deleted file mode 100644 index d9e2b6d..0000000 --- a/Arrays/obj/Debug/net5.0/Arrays.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,16 +0,0 @@ -D:\users\tednokent\Csharp\pDev\Arrays\bin\Debug\net5.0\Arrays.exe -D:\users\tednokent\Csharp\pDev\Arrays\bin\Debug\net5.0\Arrays.deps.json -D:\users\tednokent\Csharp\pDev\Arrays\bin\Debug\net5.0\Arrays.runtimeconfig.json -D:\users\tednokent\Csharp\pDev\Arrays\bin\Debug\net5.0\Arrays.runtimeconfig.dev.json -D:\users\tednokent\Csharp\pDev\Arrays\bin\Debug\net5.0\Arrays.dll -D:\users\tednokent\Csharp\pDev\Arrays\bin\Debug\net5.0\ref\Arrays.dll -D:\users\tednokent\Csharp\pDev\Arrays\bin\Debug\net5.0\Arrays.pdb -D:\users\tednokent\Csharp\pDev\Arrays\obj\Debug\net5.0\Arrays.csproj.AssemblyReference.cache -D:\users\tednokent\Csharp\pDev\Arrays\obj\Debug\net5.0\Arrays.GeneratedMSBuildEditorConfig.editorconfig -D:\users\tednokent\Csharp\pDev\Arrays\obj\Debug\net5.0\Arrays.AssemblyInfoInputs.cache -D:\users\tednokent\Csharp\pDev\Arrays\obj\Debug\net5.0\Arrays.AssemblyInfo.cs -D:\users\tednokent\Csharp\pDev\Arrays\obj\Debug\net5.0\Arrays.csproj.CoreCompileInputs.cache -D:\users\tednokent\Csharp\pDev\Arrays\obj\Debug\net5.0\Arrays.dll -D:\users\tednokent\Csharp\pDev\Arrays\obj\Debug\net5.0\ref\Arrays.dll -D:\users\tednokent\Csharp\pDev\Arrays\obj\Debug\net5.0\Arrays.pdb -D:\users\tednokent\Csharp\pDev\Arrays\obj\Debug\net5.0\Arrays.genruntimeconfig.cache diff --git a/Arrays/obj/Debug/net5.0/Arrays.dll b/Arrays/obj/Debug/net5.0/Arrays.dll deleted file mode 100644 index df189da..0000000 Binary files a/Arrays/obj/Debug/net5.0/Arrays.dll and /dev/null differ diff --git a/Arrays/obj/Debug/net5.0/Arrays.genruntimeconfig.cache b/Arrays/obj/Debug/net5.0/Arrays.genruntimeconfig.cache deleted file mode 100644 index 380c582..0000000 --- a/Arrays/obj/Debug/net5.0/Arrays.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -4285cce31bce7dde4b770fa09fd7dc409d13cf58 diff --git a/Arrays/obj/Debug/net5.0/Arrays.pdb b/Arrays/obj/Debug/net5.0/Arrays.pdb deleted file mode 100644 index 0f7e6ab..0000000 Binary files a/Arrays/obj/Debug/net5.0/Arrays.pdb and /dev/null differ diff --git a/Arrays/obj/Debug/net5.0/apphost.exe b/Arrays/obj/Debug/net5.0/apphost.exe deleted file mode 100644 index c890fd9..0000000 Binary files a/Arrays/obj/Debug/net5.0/apphost.exe and /dev/null differ diff --git a/Arrays/obj/Debug/net5.0/ref/Arrays.dll b/Arrays/obj/Debug/net5.0/ref/Arrays.dll deleted file mode 100644 index 8a5ed83..0000000 Binary files a/Arrays/obj/Debug/net5.0/ref/Arrays.dll and /dev/null differ diff --git a/Arrays/obj/project.assets.json b/Arrays/obj/project.assets.json deleted file mode 100644 index c5f7352..0000000 --- a/Arrays/obj/project.assets.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "version": 3, - "targets": { - "net5.0": {} - }, - "libraries": {}, - "projectFileDependencyGroups": { - "net5.0": [] - }, - "packageFolders": { - "C:\\Users\\Tednokent\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\users\\Tednokent\\CSharp\\pDev\\Arrays\\Arrays.csproj", - "projectName": "Arrays", - "projectPath": "D:\\users\\Tednokent\\CSharp\\pDev\\Arrays\\Arrays.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\users\\Tednokent\\CSharp\\pDev\\Arrays\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/Arrays/obj/project.nuget.cache b/Arrays/obj/project.nuget.cache deleted file mode 100644 index ef07d61..0000000 --- a/Arrays/obj/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "f7md2WYIJHrbxqQgUNAacohe2EIXL7BFYTCusnP7xzftTRHWtJ91PuK9NwYnnRJkX7kMdz8yh0p+m8yPRvVRug==", - "success": true, - "projectFilePath": "D:\\users\\tednokent\\Csharp\\pDev\\Arrays\\Arrays.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file diff --git a/ArraysII/.vscode/launch.json b/ArraysII/.vscode/launch.json deleted file mode 100644 index d70707c..0000000 --- a/ArraysII/.vscode/launch.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": ".NET Core Launch (console)", - "type": "coreclr", - "request": "launch", - "preLaunchTask": "build", - "program": "${workspaceFolder}/bin/Debug/net5.0/ArraysII.dll", - "args": [], - "cwd": "${workspaceFolder}", - "console": "integratedTerminal", - "stopAtEntry": false - }, - { - "name": ".NET Core Attach", - "type": "coreclr", - "request": "attach" - } - ] -} \ No newline at end of file diff --git a/ArraysII/.vscode/tasks.json b/ArraysII/.vscode/tasks.json deleted file mode 100644 index b74c39c..0000000 --- a/ArraysII/.vscode/tasks.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/ArraysII.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/ArraysII.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "--project", - "${workspaceFolder}/ArraysII.csproj" - ], - "problemMatcher": "$msCompile" - } - ] -} \ No newline at end of file diff --git a/ArraysII/ArraysII.csproj b/ArraysII/ArraysII.csproj deleted file mode 100644 index 2082704..0000000 --- a/ArraysII/ArraysII.csproj +++ /dev/null @@ -1,8 +0,0 @@ - - - - Exe - net5.0 - - - diff --git a/ArraysII/Program.cs b/ArraysII/Program.cs deleted file mode 100644 index 5cd01ed..0000000 --- a/ArraysII/Program.cs +++ /dev/null @@ -1,65 +0,0 @@ -using System; - -namespace ArraysII -{ - class Program - { - static void Main(string[] args) - { - //7 elemanlı bir sayı dizisi oluşturalım. - int[] NumberArray = {23,12,86,72,3,11,17}; - - //NumberArray dizisi elemanlarını ekrana yazdıralım. - Console.WriteLine("*** Array ***"); - foreach(var number in NumberArray){ - Console.WriteLine(number); - } - - //Sort - Console.WriteLine("*** Array Sort ***"); - //NumberArray dizisi elemanlarını küçükten büyüğe sıralar. - Array.Sort(NumberArray); - foreach(var number1 in NumberArray){ - Console.WriteLine(number1); - } - - //Clear - Console.WriteLine("*** Array Clear ***"); - //NumberArray dizisi elemanlarını kullanarak 2. indexten itibaren elemanları 0'lar. - Array.Clear(NumberArray, 2, 3); - - foreach(var number2 in NumberArray){ - Console.WriteLine(number2); - } - - //Reverse - Console.WriteLine("*** Array Reverse ***"); - //NummberArray dizisi elemanların index sırasını tersine çevirir. - Array.Reverse(NumberArray); - foreach(var number3 in NumberArray){ - Console.WriteLine(number3); - } - - //IndexOf - Console.WriteLine("*** Array IndexOf ***"); - //Belirtilen nesneyi arar ve tek boyutlu bir dizide veya dizide bir öğe aralığındaki ilk oluşum dizinini döndürür. - Console.WriteLine(Array.IndexOf(NumberArray, 72)); - - //Resize - Console.WriteLine("*** Array Resize ***"); - //Yeniden boyutlandırma - Array.Resize(ref NumberArray, 9); - NumberArray[7] = 99; - NumberArray[8] = 102; - - foreach(var number4 in NumberArray){ - Console.WriteLine(number4); - } - - - - - - } - } -} diff --git a/ArraysII/bin/Debug/net5.0/ArraysII.deps.json b/ArraysII/bin/Debug/net5.0/ArraysII.deps.json deleted file mode 100644 index f2e5e6f..0000000 --- a/ArraysII/bin/Debug/net5.0/ArraysII.deps.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v5.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v5.0": { - "ArraysII/1.0.0": { - "runtime": { - "ArraysII.dll": {} - } - } - } - }, - "libraries": { - "ArraysII/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/ArraysII/bin/Debug/net5.0/ArraysII.runtimeconfig.dev.json b/ArraysII/bin/Debug/net5.0/ArraysII.runtimeconfig.dev.json deleted file mode 100644 index f6ba0bd..0000000 --- a/ArraysII/bin/Debug/net5.0/ArraysII.runtimeconfig.dev.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\Tednokent\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Tednokent\\.nuget\\packages" - ] - } -} \ No newline at end of file diff --git a/ArraysII/bin/Debug/net5.0/ArraysII.runtimeconfig.json b/ArraysII/bin/Debug/net5.0/ArraysII.runtimeconfig.json deleted file mode 100644 index a8e7e82..0000000 --- a/ArraysII/bin/Debug/net5.0/ArraysII.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net5.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "5.0.0" - } - } -} \ No newline at end of file diff --git a/ArraysII/obj/ArraysII.csproj.nuget.dgspec.json b/ArraysII/obj/ArraysII.csproj.nuget.dgspec.json deleted file mode 100644 index 08b9e7e..0000000 --- a/ArraysII/obj/ArraysII.csproj.nuget.dgspec.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\ArraysII\\ArraysII.csproj": {} - }, - "projects": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\ArraysII\\ArraysII.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Users\\Tednokent\\CSharp\\pDev\\ArraysII\\ArraysII.csproj", - "projectName": "ArraysII", - "projectPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\ArraysII\\ArraysII.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\ArraysII\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/ArraysII/obj/ArraysII.csproj.nuget.g.props b/ArraysII/obj/ArraysII.csproj.nuget.g.props deleted file mode 100644 index d993cd8..0000000 --- a/ArraysII/obj/ArraysII.csproj.nuget.g.props +++ /dev/null @@ -1,18 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Tednokent\.nuget\packages\ - PackageReference - 5.11.1 - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/ArraysII/obj/ArraysII.csproj.nuget.g.targets b/ArraysII/obj/ArraysII.csproj.nuget.g.targets deleted file mode 100644 index 53cfaa1..0000000 --- a/ArraysII/obj/ArraysII.csproj.nuget.g.targets +++ /dev/null @@ -1,6 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/ArraysII/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/ArraysII/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs deleted file mode 100644 index 2f7e5ec..0000000 --- a/ArraysII/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/ArraysII/obj/Debug/net5.0/ArraysII.AssemblyInfo.cs b/ArraysII/obj/Debug/net5.0/ArraysII.AssemblyInfo.cs deleted file mode 100644 index 5dc8f97..0000000 --- a/ArraysII/obj/Debug/net5.0/ArraysII.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Bu kod araç tarafından oluşturuldu. -// Çalışma Zamanı Sürümü:4.0.30319.42000 -// -// Bu dosyada yapılacak değişiklikler yanlış davranışa neden olabilir ve -// kod yeniden oluşturulursa kaybolur. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("ArraysII")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("ArraysII")] -[assembly: System.Reflection.AssemblyTitleAttribute("ArraysII")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// MSBuild WriteCodeFragment sınıfı tarafından oluşturuldu. - diff --git a/ArraysII/obj/Debug/net5.0/ArraysII.GeneratedMSBuildEditorConfig.editorconfig b/ArraysII/obj/Debug/net5.0/ArraysII.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index d8f27f1..0000000 --- a/ArraysII/obj/Debug/net5.0/ArraysII.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net5.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.PublishSingleFile = -build_property.IncludeAllContentForSelfExtract = -build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows -build_property.RootNamespace = ArraysII -build_property.ProjectDir = D:\Users\Tednokent\CSharp\pDev\ArraysII\ diff --git a/ArraysII/obj/Debug/net5.0/ArraysII.csproj.FileListAbsolute.txt b/ArraysII/obj/Debug/net5.0/ArraysII.csproj.FileListAbsolute.txt deleted file mode 100644 index bb6a1bc..0000000 --- a/ArraysII/obj/Debug/net5.0/ArraysII.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,16 +0,0 @@ -D:\Users\Tednokent\CSharp\pDev\ArraysII\bin\Debug\net5.0\ArraysII.exe -D:\Users\Tednokent\CSharp\pDev\ArraysII\bin\Debug\net5.0\ArraysII.deps.json -D:\Users\Tednokent\CSharp\pDev\ArraysII\bin\Debug\net5.0\ArraysII.runtimeconfig.json -D:\Users\Tednokent\CSharp\pDev\ArraysII\bin\Debug\net5.0\ArraysII.runtimeconfig.dev.json -D:\Users\Tednokent\CSharp\pDev\ArraysII\bin\Debug\net5.0\ArraysII.dll -D:\Users\Tednokent\CSharp\pDev\ArraysII\bin\Debug\net5.0\ref\ArraysII.dll -D:\Users\Tednokent\CSharp\pDev\ArraysII\bin\Debug\net5.0\ArraysII.pdb -D:\Users\Tednokent\CSharp\pDev\ArraysII\obj\Debug\net5.0\ArraysII.csproj.AssemblyReference.cache -D:\Users\Tednokent\CSharp\pDev\ArraysII\obj\Debug\net5.0\ArraysII.GeneratedMSBuildEditorConfig.editorconfig -D:\Users\Tednokent\CSharp\pDev\ArraysII\obj\Debug\net5.0\ArraysII.AssemblyInfoInputs.cache -D:\Users\Tednokent\CSharp\pDev\ArraysII\obj\Debug\net5.0\ArraysII.AssemblyInfo.cs -D:\Users\Tednokent\CSharp\pDev\ArraysII\obj\Debug\net5.0\ArraysII.csproj.CoreCompileInputs.cache -D:\Users\Tednokent\CSharp\pDev\ArraysII\obj\Debug\net5.0\ArraysII.dll -D:\Users\Tednokent\CSharp\pDev\ArraysII\obj\Debug\net5.0\ref\ArraysII.dll -D:\Users\Tednokent\CSharp\pDev\ArraysII\obj\Debug\net5.0\ArraysII.pdb -D:\Users\Tednokent\CSharp\pDev\ArraysII\obj\Debug\net5.0\ArraysII.genruntimeconfig.cache diff --git a/ArraysII/obj/project.assets.json b/ArraysII/obj/project.assets.json deleted file mode 100644 index 855b5db..0000000 --- a/ArraysII/obj/project.assets.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "version": 3, - "targets": { - "net5.0": {} - }, - "libraries": {}, - "projectFileDependencyGroups": { - "net5.0": [] - }, - "packageFolders": { - "C:\\Users\\Tednokent\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Users\\Tednokent\\CSharp\\pDev\\ArraysII\\ArraysII.csproj", - "projectName": "ArraysII", - "projectPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\ArraysII\\ArraysII.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\ArraysII\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/ExceptionHandling/.vscode/launch.json b/ExceptionHandling/.vscode/launch.json deleted file mode 100644 index a1b6b33..0000000 --- a/ExceptionHandling/.vscode/launch.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": ".NET Core Launch (console)", - "type": "coreclr", - "request": "launch", - "preLaunchTask": "build", - "program": "${workspaceFolder}/bin/Debug/net5.0/ExceptionHandling.dll", - "args": [], - "cwd": "${workspaceFolder}", - "console": "integratedTerminal", - "stopAtEntry": false - }, - { - "name": ".NET Core Attach", - "type": "coreclr", - "request": "attach" - } - ] -} \ No newline at end of file diff --git a/ExceptionHandling/.vscode/tasks.json b/ExceptionHandling/.vscode/tasks.json deleted file mode 100644 index 643314e..0000000 --- a/ExceptionHandling/.vscode/tasks.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/ExceptionHandling.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/ExceptionHandling.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "${workspaceFolder}/ExceptionHandling.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - } - ] -} \ No newline at end of file diff --git a/ExceptionHandling/ExceptionHandling.csproj b/ExceptionHandling/ExceptionHandling.csproj deleted file mode 100644 index 2082704..0000000 --- a/ExceptionHandling/ExceptionHandling.csproj +++ /dev/null @@ -1,8 +0,0 @@ - - - - Exe - net5.0 - - - diff --git a/ExceptionHandling/Program.cs b/ExceptionHandling/Program.cs deleted file mode 100644 index 8eeccf2..0000000 --- a/ExceptionHandling/Program.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; - -namespace ExceptionHandling -{ - class Program - { - static void Main(string[] args) - { - try - { - Console.WriteLine("Please enter a number :"); - int number = Convert.ToInt32(Console.ReadLine()); - Console.WriteLine("number is : " + number); - } - catch (Exception ex) - { - Console.WriteLine("Hata :" + ex.Message.ToString()); - } - /* finally - { - Console.Write("Process completed."); - } */ - - try - { - //int a = int.Parse(null); - //int a = int.Parse("test"); - int a = int.Parse("-20000000000"); - } - catch (ArgumentNullException ex) - { - - Console.WriteLine("You entered an empty value."); - Console.WriteLine(ex); - } - catch(FormatException ex) - { - Console.WriteLine("The data type is not suitable"); - Console.WriteLine(ex); - } - catch(OverflowException ex) - { - Console.WriteLine("You entered a value that is too large or too small."); - Console.WriteLine(ex); - } - finally - { - Console.WriteLine("The operation completed successfully"); - } - - - } - } -} diff --git a/ExceptionHandling/bin/Debug/net5.0/ExceptionHandling.deps.json b/ExceptionHandling/bin/Debug/net5.0/ExceptionHandling.deps.json deleted file mode 100644 index 174fa86..0000000 --- a/ExceptionHandling/bin/Debug/net5.0/ExceptionHandling.deps.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v5.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v5.0": { - "ExceptionHandling/1.0.0": { - "runtime": { - "ExceptionHandling.dll": {} - } - } - } - }, - "libraries": { - "ExceptionHandling/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/ExceptionHandling/bin/Debug/net5.0/ExceptionHandling.dll b/ExceptionHandling/bin/Debug/net5.0/ExceptionHandling.dll deleted file mode 100644 index cf3bd68..0000000 Binary files a/ExceptionHandling/bin/Debug/net5.0/ExceptionHandling.dll and /dev/null differ diff --git a/ExceptionHandling/bin/Debug/net5.0/ExceptionHandling.exe b/ExceptionHandling/bin/Debug/net5.0/ExceptionHandling.exe deleted file mode 100644 index 874515b..0000000 Binary files a/ExceptionHandling/bin/Debug/net5.0/ExceptionHandling.exe and /dev/null differ diff --git a/ExceptionHandling/bin/Debug/net5.0/ExceptionHandling.pdb b/ExceptionHandling/bin/Debug/net5.0/ExceptionHandling.pdb deleted file mode 100644 index 22730d4..0000000 Binary files a/ExceptionHandling/bin/Debug/net5.0/ExceptionHandling.pdb and /dev/null differ diff --git a/ExceptionHandling/bin/Debug/net5.0/ExceptionHandling.runtimeconfig.dev.json b/ExceptionHandling/bin/Debug/net5.0/ExceptionHandling.runtimeconfig.dev.json deleted file mode 100644 index f6ba0bd..0000000 --- a/ExceptionHandling/bin/Debug/net5.0/ExceptionHandling.runtimeconfig.dev.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\Tednokent\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Tednokent\\.nuget\\packages" - ] - } -} \ No newline at end of file diff --git a/ExceptionHandling/bin/Debug/net5.0/ExceptionHandling.runtimeconfig.json b/ExceptionHandling/bin/Debug/net5.0/ExceptionHandling.runtimeconfig.json deleted file mode 100644 index a8e7e82..0000000 --- a/ExceptionHandling/bin/Debug/net5.0/ExceptionHandling.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net5.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "5.0.0" - } - } -} \ No newline at end of file diff --git a/ExceptionHandling/bin/Debug/net5.0/ref/ExceptionHandling.dll b/ExceptionHandling/bin/Debug/net5.0/ref/ExceptionHandling.dll deleted file mode 100644 index fa9b879..0000000 Binary files a/ExceptionHandling/bin/Debug/net5.0/ref/ExceptionHandling.dll and /dev/null differ diff --git a/ExceptionHandling/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/ExceptionHandling/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs deleted file mode 100644 index 2f7e5ec..0000000 --- a/ExceptionHandling/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.AssemblyInfo.cs b/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.AssemblyInfo.cs deleted file mode 100644 index cfce658..0000000 --- a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Bu kod araç tarafından oluşturuldu. -// Çalışma Zamanı Sürümü:4.0.30319.42000 -// -// Bu dosyada yapılacak değişiklikler yanlış davranışa neden olabilir ve -// kod yeniden oluşturulursa kaybolur. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("ExceptionHandling")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("ExceptionHandling")] -[assembly: System.Reflection.AssemblyTitleAttribute("ExceptionHandling")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// MSBuild WriteCodeFragment sınıfı tarafından oluşturuldu. - diff --git a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.AssemblyInfoInputs.cache b/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.AssemblyInfoInputs.cache deleted file mode 100644 index f8c408a..0000000 --- a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -b0566dfe44ec8c941869b2dbe45e2005e28b1a47 diff --git a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.GeneratedMSBuildEditorConfig.editorconfig b/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 4a9bb89..0000000 --- a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net5.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.PublishSingleFile = -build_property.IncludeAllContentForSelfExtract = -build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows -build_property.RootNamespace = ExceptionHandling -build_property.ProjectDir = D:\Users\Tednokent\CSharp\pDev\ExceptionHandling\ diff --git a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.assets.cache b/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.assets.cache deleted file mode 100644 index afee334..0000000 Binary files a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.assets.cache and /dev/null differ diff --git a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.csproj.AssemblyReference.cache b/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.csproj.AssemblyReference.cache deleted file mode 100644 index d29614d..0000000 Binary files a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.csproj.AssemblyReference.cache and /dev/null differ diff --git a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.csproj.CoreCompileInputs.cache b/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.csproj.CoreCompileInputs.cache deleted file mode 100644 index d65d96a..0000000 --- a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -3362edf58e30c2c59f28c56ded795e22c71dafb6 diff --git a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.csproj.FileListAbsolute.txt b/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.csproj.FileListAbsolute.txt deleted file mode 100644 index 9f08ce1..0000000 --- a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,16 +0,0 @@ -D:\Users\Tednokent\CSharp\pDev\ExceptionHandling\bin\Debug\net5.0\ExceptionHandling.exe -D:\Users\Tednokent\CSharp\pDev\ExceptionHandling\bin\Debug\net5.0\ExceptionHandling.deps.json -D:\Users\Tednokent\CSharp\pDev\ExceptionHandling\bin\Debug\net5.0\ExceptionHandling.runtimeconfig.json -D:\Users\Tednokent\CSharp\pDev\ExceptionHandling\bin\Debug\net5.0\ExceptionHandling.runtimeconfig.dev.json -D:\Users\Tednokent\CSharp\pDev\ExceptionHandling\bin\Debug\net5.0\ExceptionHandling.dll -D:\Users\Tednokent\CSharp\pDev\ExceptionHandling\bin\Debug\net5.0\ref\ExceptionHandling.dll -D:\Users\Tednokent\CSharp\pDev\ExceptionHandling\bin\Debug\net5.0\ExceptionHandling.pdb -D:\Users\Tednokent\CSharp\pDev\ExceptionHandling\obj\Debug\net5.0\ExceptionHandling.csproj.AssemblyReference.cache -D:\Users\Tednokent\CSharp\pDev\ExceptionHandling\obj\Debug\net5.0\ExceptionHandling.GeneratedMSBuildEditorConfig.editorconfig -D:\Users\Tednokent\CSharp\pDev\ExceptionHandling\obj\Debug\net5.0\ExceptionHandling.AssemblyInfoInputs.cache -D:\Users\Tednokent\CSharp\pDev\ExceptionHandling\obj\Debug\net5.0\ExceptionHandling.AssemblyInfo.cs -D:\Users\Tednokent\CSharp\pDev\ExceptionHandling\obj\Debug\net5.0\ExceptionHandling.csproj.CoreCompileInputs.cache -D:\Users\Tednokent\CSharp\pDev\ExceptionHandling\obj\Debug\net5.0\ExceptionHandling.dll -D:\Users\Tednokent\CSharp\pDev\ExceptionHandling\obj\Debug\net5.0\ref\ExceptionHandling.dll -D:\Users\Tednokent\CSharp\pDev\ExceptionHandling\obj\Debug\net5.0\ExceptionHandling.pdb -D:\Users\Tednokent\CSharp\pDev\ExceptionHandling\obj\Debug\net5.0\ExceptionHandling.genruntimeconfig.cache diff --git a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.dll b/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.dll deleted file mode 100644 index cf3bd68..0000000 Binary files a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.dll and /dev/null differ diff --git a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.genruntimeconfig.cache b/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.genruntimeconfig.cache deleted file mode 100644 index 76be530..0000000 --- a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -8d8cb541f16f0dd8c770af650948e9ce2cb52839 diff --git a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.pdb b/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.pdb deleted file mode 100644 index 22730d4..0000000 Binary files a/ExceptionHandling/obj/Debug/net5.0/ExceptionHandling.pdb and /dev/null differ diff --git a/ExceptionHandling/obj/Debug/net5.0/apphost.exe b/ExceptionHandling/obj/Debug/net5.0/apphost.exe deleted file mode 100644 index 874515b..0000000 Binary files a/ExceptionHandling/obj/Debug/net5.0/apphost.exe and /dev/null differ diff --git a/ExceptionHandling/obj/Debug/net5.0/ref/ExceptionHandling.dll b/ExceptionHandling/obj/Debug/net5.0/ref/ExceptionHandling.dll deleted file mode 100644 index fa9b879..0000000 Binary files a/ExceptionHandling/obj/Debug/net5.0/ref/ExceptionHandling.dll and /dev/null differ diff --git a/ExceptionHandling/obj/ExceptionHandling.csproj.nuget.dgspec.json b/ExceptionHandling/obj/ExceptionHandling.csproj.nuget.dgspec.json deleted file mode 100644 index 02bc728..0000000 --- a/ExceptionHandling/obj/ExceptionHandling.csproj.nuget.dgspec.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\ExceptionHandling\\ExceptionHandling.csproj": {} - }, - "projects": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\ExceptionHandling\\ExceptionHandling.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Users\\Tednokent\\CSharp\\pDev\\ExceptionHandling\\ExceptionHandling.csproj", - "projectName": "ExceptionHandling", - "projectPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\ExceptionHandling\\ExceptionHandling.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\ExceptionHandling\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/ExceptionHandling/obj/ExceptionHandling.csproj.nuget.g.props b/ExceptionHandling/obj/ExceptionHandling.csproj.nuget.g.props deleted file mode 100644 index d993cd8..0000000 --- a/ExceptionHandling/obj/ExceptionHandling.csproj.nuget.g.props +++ /dev/null @@ -1,18 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Tednokent\.nuget\packages\ - PackageReference - 5.11.1 - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/ExceptionHandling/obj/ExceptionHandling.csproj.nuget.g.targets b/ExceptionHandling/obj/ExceptionHandling.csproj.nuget.g.targets deleted file mode 100644 index 53cfaa1..0000000 --- a/ExceptionHandling/obj/ExceptionHandling.csproj.nuget.g.targets +++ /dev/null @@ -1,6 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/ExceptionHandling/obj/project.assets.json b/ExceptionHandling/obj/project.assets.json deleted file mode 100644 index 874d087..0000000 --- a/ExceptionHandling/obj/project.assets.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "version": 3, - "targets": { - "net5.0": {} - }, - "libraries": {}, - "projectFileDependencyGroups": { - "net5.0": [] - }, - "packageFolders": { - "C:\\Users\\Tednokent\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Users\\Tednokent\\CSharp\\pDev\\ExceptionHandling\\ExceptionHandling.csproj", - "projectName": "ExceptionHandling", - "projectPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\ExceptionHandling\\ExceptionHandling.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\ExceptionHandling\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/ExceptionHandling/obj/project.nuget.cache b/ExceptionHandling/obj/project.nuget.cache deleted file mode 100644 index ef3be47..0000000 --- a/ExceptionHandling/obj/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "lk9btNBN3C63DFCacSbXE/s9QBaUfj2bLsBBxeELTtUlENP4loHBtFXAPr5cFZlQZeOtxzCwgBdJ+1aB1yMhPQ==", - "success": true, - "projectFilePath": "D:\\Users\\Tednokent\\CSharp\\pDev\\ExceptionHandling\\ExceptionHandling.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file diff --git a/First/.vscode/launch.json b/First/.vscode/launch.json deleted file mode 100644 index e4283ef..0000000 --- a/First/.vscode/launch.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": ".NET Core Launch (console)", - "type": "coreclr", - "request": "launch", - "preLaunchTask": "build", - "program": "${workspaceFolder}/bin/Debug/net5.0/pDev.dll", - "args": [], - "cwd": "${workspaceFolder}", - "console": "integratedTerminal", // integratedTerminal, externalTerminal, internalTerminal - "stopAtEntry": false - }, - { - "name": ".NET Core Attach", - "type": "coreclr", - "request": "attach" - } - ] -} \ No newline at end of file diff --git a/First/.vscode/tasks.json b/First/.vscode/tasks.json deleted file mode 100644 index 2ae09b7..0000000 --- a/First/.vscode/tasks.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/pDev.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/pDev.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "${workspaceFolder}/pDev.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - } - ] -} \ No newline at end of file diff --git a/First/Program.cs b/First/Program.cs deleted file mode 100644 index b01ba17..0000000 --- a/First/Program.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; - -namespace pDev -{ - class Program - { - static void Main(string[] args) - { - Console.WriteLine("Hello World!"); - - Console.WriteLine("Name :"); - string name = Console.ReadLine(); - Console.WriteLine("Surname :"); - string surname = Console.ReadLine(); - - Console.WriteLine("Hello," + name + " " + surname); - - Console.ReadKey(); - } - } -} diff --git a/First/README.md b/First/README.md deleted file mode 100644 index 3a65d3e..0000000 --- a/First/README.md +++ /dev/null @@ -1 +0,0 @@ -# pDev \ No newline at end of file diff --git a/First/bin/Debug/net5.0/pDev.dll b/First/bin/Debug/net5.0/pDev.dll deleted file mode 100644 index 2f2ecb9..0000000 Binary files a/First/bin/Debug/net5.0/pDev.dll and /dev/null differ diff --git a/First/bin/Debug/net5.0/pDev.exe b/First/bin/Debug/net5.0/pDev.exe deleted file mode 100644 index 9469c7b..0000000 Binary files a/First/bin/Debug/net5.0/pDev.exe and /dev/null differ diff --git a/First/bin/Debug/net5.0/pDev.pdb b/First/bin/Debug/net5.0/pDev.pdb deleted file mode 100644 index 981f2e1..0000000 Binary files a/First/bin/Debug/net5.0/pDev.pdb and /dev/null differ diff --git a/First/bin/Debug/net5.0/pDev.runtimeconfig.dev.json b/First/bin/Debug/net5.0/pDev.runtimeconfig.dev.json deleted file mode 100644 index f6ba0bd..0000000 --- a/First/bin/Debug/net5.0/pDev.runtimeconfig.dev.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\Tednokent\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Tednokent\\.nuget\\packages" - ] - } -} \ No newline at end of file diff --git a/First/bin/Debug/net5.0/pDev.runtimeconfig.json b/First/bin/Debug/net5.0/pDev.runtimeconfig.json deleted file mode 100644 index a8e7e82..0000000 --- a/First/bin/Debug/net5.0/pDev.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net5.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "5.0.0" - } - } -} \ No newline at end of file diff --git a/First/bin/Debug/net5.0/ref/pDev.dll b/First/bin/Debug/net5.0/ref/pDev.dll deleted file mode 100644 index 1daadb9..0000000 Binary files a/First/bin/Debug/net5.0/ref/pDev.dll and /dev/null differ diff --git a/First/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/First/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs deleted file mode 100644 index 2f7e5ec..0000000 --- a/First/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/First/obj/Debug/net5.0/apphost.exe b/First/obj/Debug/net5.0/apphost.exe deleted file mode 100644 index 9469c7b..0000000 Binary files a/First/obj/Debug/net5.0/apphost.exe and /dev/null differ diff --git a/First/obj/Debug/net5.0/pDev.AssemblyInfo.cs b/First/obj/Debug/net5.0/pDev.AssemblyInfo.cs deleted file mode 100644 index 5d16aed..0000000 --- a/First/obj/Debug/net5.0/pDev.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Bu kod araç tarafından oluşturuldu. -// Çalışma Zamanı Sürümü:4.0.30319.42000 -// -// Bu dosyada yapılacak değişiklikler yanlış davranışa neden olabilir ve -// kod yeniden oluşturulursa kaybolur. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("pDev")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("pDev")] -[assembly: System.Reflection.AssemblyTitleAttribute("pDev")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// MSBuild WriteCodeFragment sınıfı tarafından oluşturuldu. - diff --git a/First/obj/Debug/net5.0/pDev.AssemblyInfoInputs.cache b/First/obj/Debug/net5.0/pDev.AssemblyInfoInputs.cache deleted file mode 100644 index 25bad0c..0000000 --- a/First/obj/Debug/net5.0/pDev.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c63c3b515812a5696fefd9d573722c3cd33e9a56 diff --git a/First/obj/Debug/net5.0/pDev.GeneratedMSBuildEditorConfig.editorconfig b/First/obj/Debug/net5.0/pDev.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index b662370..0000000 --- a/First/obj/Debug/net5.0/pDev.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net5.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.PublishSingleFile = -build_property.IncludeAllContentForSelfExtract = -build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows -build_property.RootNamespace = pDev -build_property.ProjectDir = d:\Users\Tednokent\CSharp\pDev\First\ diff --git a/First/obj/Debug/net5.0/pDev.assets.cache b/First/obj/Debug/net5.0/pDev.assets.cache deleted file mode 100644 index b0b7acc..0000000 Binary files a/First/obj/Debug/net5.0/pDev.assets.cache and /dev/null differ diff --git a/First/obj/Debug/net5.0/pDev.csproj.AssemblyReference.cache b/First/obj/Debug/net5.0/pDev.csproj.AssemblyReference.cache deleted file mode 100644 index d29614d..0000000 Binary files a/First/obj/Debug/net5.0/pDev.csproj.AssemblyReference.cache and /dev/null differ diff --git a/First/obj/Debug/net5.0/pDev.csproj.CoreCompileInputs.cache b/First/obj/Debug/net5.0/pDev.csproj.CoreCompileInputs.cache deleted file mode 100644 index e86475a..0000000 --- a/First/obj/Debug/net5.0/pDev.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -f5460163a6076c0b3349ecfecf2bc36adea734ee diff --git a/First/obj/Debug/net5.0/pDev.csproj.FileListAbsolute.txt b/First/obj/Debug/net5.0/pDev.csproj.FileListAbsolute.txt deleted file mode 100644 index 627bc38..0000000 --- a/First/obj/Debug/net5.0/pDev.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,32 +0,0 @@ -D:\Users\Tednokent\cSharp\pDev\bin\Debug\net5.0\pDev.exe -D:\Users\Tednokent\cSharp\pDev\bin\Debug\net5.0\pDev.deps.json -D:\Users\Tednokent\cSharp\pDev\bin\Debug\net5.0\pDev.runtimeconfig.json -D:\Users\Tednokent\cSharp\pDev\bin\Debug\net5.0\pDev.runtimeconfig.dev.json -D:\Users\Tednokent\cSharp\pDev\bin\Debug\net5.0\pDev.dll -D:\Users\Tednokent\cSharp\pDev\bin\Debug\net5.0\ref\pDev.dll -D:\Users\Tednokent\cSharp\pDev\bin\Debug\net5.0\pDev.pdb -D:\Users\Tednokent\cSharp\pDev\obj\Debug\net5.0\pDev.csproj.AssemblyReference.cache -D:\Users\Tednokent\cSharp\pDev\obj\Debug\net5.0\pDev.GeneratedMSBuildEditorConfig.editorconfig -D:\Users\Tednokent\cSharp\pDev\obj\Debug\net5.0\pDev.AssemblyInfoInputs.cache -D:\Users\Tednokent\cSharp\pDev\obj\Debug\net5.0\pDev.AssemblyInfo.cs -D:\Users\Tednokent\cSharp\pDev\obj\Debug\net5.0\pDev.csproj.CoreCompileInputs.cache -D:\Users\Tednokent\cSharp\pDev\obj\Debug\net5.0\pDev.dll -D:\Users\Tednokent\cSharp\pDev\obj\Debug\net5.0\ref\pDev.dll -D:\Users\Tednokent\cSharp\pDev\obj\Debug\net5.0\pDev.pdb -D:\Users\Tednokent\cSharp\pDev\obj\Debug\net5.0\pDev.genruntimeconfig.cache -D:\Users\Tednokent\CSharp\pDev\First\bin\Debug\net5.0\pDev.exe -D:\Users\Tednokent\CSharp\pDev\First\bin\Debug\net5.0\pDev.deps.json -D:\Users\Tednokent\CSharp\pDev\First\bin\Debug\net5.0\pDev.runtimeconfig.json -D:\Users\Tednokent\CSharp\pDev\First\bin\Debug\net5.0\pDev.runtimeconfig.dev.json -D:\Users\Tednokent\CSharp\pDev\First\bin\Debug\net5.0\pDev.dll -D:\Users\Tednokent\CSharp\pDev\First\bin\Debug\net5.0\ref\pDev.dll -D:\Users\Tednokent\CSharp\pDev\First\bin\Debug\net5.0\pDev.pdb -D:\Users\Tednokent\CSharp\pDev\First\obj\Debug\net5.0\pDev.csproj.AssemblyReference.cache -D:\Users\Tednokent\CSharp\pDev\First\obj\Debug\net5.0\pDev.GeneratedMSBuildEditorConfig.editorconfig -D:\Users\Tednokent\CSharp\pDev\First\obj\Debug\net5.0\pDev.AssemblyInfoInputs.cache -D:\Users\Tednokent\CSharp\pDev\First\obj\Debug\net5.0\pDev.AssemblyInfo.cs -D:\Users\Tednokent\CSharp\pDev\First\obj\Debug\net5.0\pDev.csproj.CoreCompileInputs.cache -D:\Users\Tednokent\CSharp\pDev\First\obj\Debug\net5.0\pDev.dll -D:\Users\Tednokent\CSharp\pDev\First\obj\Debug\net5.0\ref\pDev.dll -D:\Users\Tednokent\CSharp\pDev\First\obj\Debug\net5.0\pDev.pdb -D:\Users\Tednokent\CSharp\pDev\First\obj\Debug\net5.0\pDev.genruntimeconfig.cache diff --git a/First/obj/Debug/net5.0/pDev.dll b/First/obj/Debug/net5.0/pDev.dll deleted file mode 100644 index 2f2ecb9..0000000 Binary files a/First/obj/Debug/net5.0/pDev.dll and /dev/null differ diff --git a/First/obj/Debug/net5.0/pDev.genruntimeconfig.cache b/First/obj/Debug/net5.0/pDev.genruntimeconfig.cache deleted file mode 100644 index 0557220..0000000 --- a/First/obj/Debug/net5.0/pDev.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -b812ac442a9742af646c2dd2f8654c45034ca4da diff --git a/First/obj/Debug/net5.0/pDev.pdb b/First/obj/Debug/net5.0/pDev.pdb deleted file mode 100644 index 981f2e1..0000000 Binary files a/First/obj/Debug/net5.0/pDev.pdb and /dev/null differ diff --git a/First/obj/Debug/net5.0/ref/pDev.dll b/First/obj/Debug/net5.0/ref/pDev.dll deleted file mode 100644 index 1daadb9..0000000 Binary files a/First/obj/Debug/net5.0/ref/pDev.dll and /dev/null differ diff --git a/First/obj/pDev.csproj.nuget.dgspec.json b/First/obj/pDev.csproj.nuget.dgspec.json deleted file mode 100644 index e108e05..0000000 --- a/First/obj/pDev.csproj.nuget.dgspec.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\First\\pDev.csproj": {} - }, - "projects": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\First\\pDev.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Users\\Tednokent\\CSharp\\pDev\\First\\pDev.csproj", - "projectName": "pDev", - "projectPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\First\\pDev.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\First\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/First/obj/pDev.csproj.nuget.g.props b/First/obj/pDev.csproj.nuget.g.props deleted file mode 100644 index d993cd8..0000000 --- a/First/obj/pDev.csproj.nuget.g.props +++ /dev/null @@ -1,18 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Tednokent\.nuget\packages\ - PackageReference - 5.11.1 - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/First/obj/pDev.csproj.nuget.g.targets b/First/obj/pDev.csproj.nuget.g.targets deleted file mode 100644 index 53cfaa1..0000000 --- a/First/obj/pDev.csproj.nuget.g.targets +++ /dev/null @@ -1,6 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/First/obj/project.nuget.cache b/First/obj/project.nuget.cache deleted file mode 100644 index 753d1d2..0000000 --- a/First/obj/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "K29UNKYfNkJgIeVllltk+AonFBQdyzAiUccTHIalQNF0ZRzJzodESDyx+UT8fGwJ4P9COjAD0xUW9olosiXClQ==", - "success": true, - "projectFilePath": "D:\\Users\\Tednokent\\CSharp\\pDev\\First\\pDev.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file diff --git a/First/pDev.csproj b/First/pDev.csproj deleted file mode 100644 index 2082704..0000000 --- a/First/pDev.csproj +++ /dev/null @@ -1,8 +0,0 @@ - - - - Exe - net5.0 - - - diff --git a/First/tasks.json b/First/tasks.json deleted file mode 100644 index 2ae09b7..0000000 --- a/First/tasks.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/pDev.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/pDev.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "${workspaceFolder}/pDev.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - } - ] -} \ No newline at end of file diff --git a/Loops-I/.vscode/launch.json b/Loops-I/.vscode/launch.json deleted file mode 100644 index 640f5e2..0000000 --- a/Loops-I/.vscode/launch.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": ".NET Core Launch (console)", - "type": "coreclr", - "request": "launch", - "preLaunchTask": "build", - "program": "${workspaceFolder}/bin/Debug/net5.0/loops.dll", - "args": [], - "cwd": "${workspaceFolder}", - "console": "integratedTerminal", - "stopAtEntry": false - }, - { - "name": ".NET Core Attach", - "type": "coreclr", - "request": "attach" - } - ] -} \ No newline at end of file diff --git a/Loops-I/.vscode/tasks.json b/Loops-I/.vscode/tasks.json deleted file mode 100644 index 773d847..0000000 --- a/Loops-I/.vscode/tasks.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/loops.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/loops.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "${workspaceFolder}/loops.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - } - ] -} \ No newline at end of file diff --git a/Loops-I/Program.cs b/Loops-I/Program.cs deleted file mode 100644 index f3a8651..0000000 --- a/Loops-I/Program.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; - -namespace loops -{ - class Program - { - static void Main(string[] args) - { - //Write the odd numbers up to the number entered by the user on the screen. - Console.Write("Please enter a number :"); - int counter = int.Parse(Console.ReadLine()); - - for (int i = 1; i <= counter; i++) - { - if (i % 2 == 1) - Console.WriteLine(i); - } - - // 1-1000 - - int even = 0; - int odd = 0;; - for (int i = 1; i <=1000; i++) - { - if (i%2 == 0) - { - even += i; - } - else if (i % 2 == 1) - { - odd += i; - } - } - - Console.WriteLine($"Sum of even numbers: {even}"); - Console.WriteLine($"Sum of odd numbers: {odd}"); - - //break.continue - for (int i = 1; i < 10; i++) - { - if (i==4) - break; - Console.WriteLine(i); - } - - for (int i = 1; i < 10; i++) - { - if (i==4) - continue; - Console.WriteLine(i); - } - } - } -} diff --git a/Loops-I/bin/Debug/net5.0/loops.deps.json b/Loops-I/bin/Debug/net5.0/loops.deps.json deleted file mode 100644 index b0d54e5..0000000 --- a/Loops-I/bin/Debug/net5.0/loops.deps.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v5.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v5.0": { - "loops/1.0.0": { - "runtime": { - "loops.dll": {} - } - } - } - }, - "libraries": { - "loops/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/Loops-I/bin/Debug/net5.0/loops.dll b/Loops-I/bin/Debug/net5.0/loops.dll deleted file mode 100644 index 34a1e68..0000000 Binary files a/Loops-I/bin/Debug/net5.0/loops.dll and /dev/null differ diff --git a/Loops-I/bin/Debug/net5.0/loops.exe b/Loops-I/bin/Debug/net5.0/loops.exe deleted file mode 100644 index abceeee..0000000 Binary files a/Loops-I/bin/Debug/net5.0/loops.exe and /dev/null differ diff --git a/Loops-I/bin/Debug/net5.0/loops.pdb b/Loops-I/bin/Debug/net5.0/loops.pdb deleted file mode 100644 index 9572a4b..0000000 Binary files a/Loops-I/bin/Debug/net5.0/loops.pdb and /dev/null differ diff --git a/Loops-I/bin/Debug/net5.0/loops.runtimeconfig.dev.json b/Loops-I/bin/Debug/net5.0/loops.runtimeconfig.dev.json deleted file mode 100644 index f6ba0bd..0000000 --- a/Loops-I/bin/Debug/net5.0/loops.runtimeconfig.dev.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\Tednokent\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Tednokent\\.nuget\\packages" - ] - } -} \ No newline at end of file diff --git a/Loops-I/bin/Debug/net5.0/loops.runtimeconfig.json b/Loops-I/bin/Debug/net5.0/loops.runtimeconfig.json deleted file mode 100644 index a8e7e82..0000000 --- a/Loops-I/bin/Debug/net5.0/loops.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net5.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "5.0.0" - } - } -} \ No newline at end of file diff --git a/Loops-I/bin/Debug/net5.0/ref/loops.dll b/Loops-I/bin/Debug/net5.0/ref/loops.dll deleted file mode 100644 index 8a22992..0000000 Binary files a/Loops-I/bin/Debug/net5.0/ref/loops.dll and /dev/null differ diff --git a/Loops-I/loops.csproj b/Loops-I/loops.csproj deleted file mode 100644 index 2082704..0000000 --- a/Loops-I/loops.csproj +++ /dev/null @@ -1,8 +0,0 @@ - - - - Exe - net5.0 - - - diff --git a/Loops-I/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Loops-I/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs deleted file mode 100644 index 2f7e5ec..0000000 --- a/Loops-I/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Loops-I/obj/Debug/net5.0/apphost.exe b/Loops-I/obj/Debug/net5.0/apphost.exe deleted file mode 100644 index abceeee..0000000 Binary files a/Loops-I/obj/Debug/net5.0/apphost.exe and /dev/null differ diff --git a/Loops-I/obj/Debug/net5.0/loops.AssemblyInfo.cs b/Loops-I/obj/Debug/net5.0/loops.AssemblyInfo.cs deleted file mode 100644 index 2a42bb6..0000000 --- a/Loops-I/obj/Debug/net5.0/loops.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Bu kod araç tarafından oluşturuldu. -// Çalışma Zamanı Sürümü:4.0.30319.42000 -// -// Bu dosyada yapılacak değişiklikler yanlış davranışa neden olabilir ve -// kod yeniden oluşturulursa kaybolur. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("loops")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("loops")] -[assembly: System.Reflection.AssemblyTitleAttribute("loops")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// MSBuild WriteCodeFragment sınıfı tarafından oluşturuldu. - diff --git a/Loops-I/obj/Debug/net5.0/loops.AssemblyInfoInputs.cache b/Loops-I/obj/Debug/net5.0/loops.AssemblyInfoInputs.cache deleted file mode 100644 index faadd7b..0000000 --- a/Loops-I/obj/Debug/net5.0/loops.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -004649124f2f8d0119b541e59e5a49c4cff881a2 diff --git a/Loops-I/obj/Debug/net5.0/loops.GeneratedMSBuildEditorConfig.editorconfig b/Loops-I/obj/Debug/net5.0/loops.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 97fab9a..0000000 --- a/Loops-I/obj/Debug/net5.0/loops.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net5.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.PublishSingleFile = -build_property.IncludeAllContentForSelfExtract = -build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows -build_property.RootNamespace = loops -build_property.ProjectDir = D:\Users\Tednokent\CSharp\pDev\Loops\ diff --git a/Loops-I/obj/Debug/net5.0/loops.assets.cache b/Loops-I/obj/Debug/net5.0/loops.assets.cache deleted file mode 100644 index dada58a..0000000 Binary files a/Loops-I/obj/Debug/net5.0/loops.assets.cache and /dev/null differ diff --git a/Loops-I/obj/Debug/net5.0/loops.csproj.AssemblyReference.cache b/Loops-I/obj/Debug/net5.0/loops.csproj.AssemblyReference.cache deleted file mode 100644 index d29614d..0000000 Binary files a/Loops-I/obj/Debug/net5.0/loops.csproj.AssemblyReference.cache and /dev/null differ diff --git a/Loops-I/obj/Debug/net5.0/loops.csproj.CoreCompileInputs.cache b/Loops-I/obj/Debug/net5.0/loops.csproj.CoreCompileInputs.cache deleted file mode 100644 index 0a43e2b..0000000 --- a/Loops-I/obj/Debug/net5.0/loops.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -6a08c48ab7eea93ae127b2826757ce6d78780696 diff --git a/Loops-I/obj/Debug/net5.0/loops.csproj.FileListAbsolute.txt b/Loops-I/obj/Debug/net5.0/loops.csproj.FileListAbsolute.txt deleted file mode 100644 index 7315f84..0000000 --- a/Loops-I/obj/Debug/net5.0/loops.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,16 +0,0 @@ -D:\Users\Tednokent\CSharp\pDev\Loops\bin\Debug\net5.0\loops.exe -D:\Users\Tednokent\CSharp\pDev\Loops\bin\Debug\net5.0\loops.deps.json -D:\Users\Tednokent\CSharp\pDev\Loops\bin\Debug\net5.0\loops.runtimeconfig.json -D:\Users\Tednokent\CSharp\pDev\Loops\bin\Debug\net5.0\loops.runtimeconfig.dev.json -D:\Users\Tednokent\CSharp\pDev\Loops\bin\Debug\net5.0\loops.dll -D:\Users\Tednokent\CSharp\pDev\Loops\bin\Debug\net5.0\ref\loops.dll -D:\Users\Tednokent\CSharp\pDev\Loops\bin\Debug\net5.0\loops.pdb -D:\Users\Tednokent\CSharp\pDev\Loops\obj\Debug\net5.0\loops.csproj.AssemblyReference.cache -D:\Users\Tednokent\CSharp\pDev\Loops\obj\Debug\net5.0\loops.GeneratedMSBuildEditorConfig.editorconfig -D:\Users\Tednokent\CSharp\pDev\Loops\obj\Debug\net5.0\loops.AssemblyInfoInputs.cache -D:\Users\Tednokent\CSharp\pDev\Loops\obj\Debug\net5.0\loops.AssemblyInfo.cs -D:\Users\Tednokent\CSharp\pDev\Loops\obj\Debug\net5.0\loops.csproj.CoreCompileInputs.cache -D:\Users\Tednokent\CSharp\pDev\Loops\obj\Debug\net5.0\loops.dll -D:\Users\Tednokent\CSharp\pDev\Loops\obj\Debug\net5.0\ref\loops.dll -D:\Users\Tednokent\CSharp\pDev\Loops\obj\Debug\net5.0\loops.pdb -D:\Users\Tednokent\CSharp\pDev\Loops\obj\Debug\net5.0\loops.genruntimeconfig.cache diff --git a/Loops-I/obj/Debug/net5.0/loops.dll b/Loops-I/obj/Debug/net5.0/loops.dll deleted file mode 100644 index 34a1e68..0000000 Binary files a/Loops-I/obj/Debug/net5.0/loops.dll and /dev/null differ diff --git a/Loops-I/obj/Debug/net5.0/loops.genruntimeconfig.cache b/Loops-I/obj/Debug/net5.0/loops.genruntimeconfig.cache deleted file mode 100644 index 91f534d..0000000 --- a/Loops-I/obj/Debug/net5.0/loops.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -ceeec609090916c5a768cb797918239e5863f554 diff --git a/Loops-I/obj/Debug/net5.0/loops.pdb b/Loops-I/obj/Debug/net5.0/loops.pdb deleted file mode 100644 index 9572a4b..0000000 Binary files a/Loops-I/obj/Debug/net5.0/loops.pdb and /dev/null differ diff --git a/Loops-I/obj/Debug/net5.0/ref/loops.dll b/Loops-I/obj/Debug/net5.0/ref/loops.dll deleted file mode 100644 index 8a22992..0000000 Binary files a/Loops-I/obj/Debug/net5.0/ref/loops.dll and /dev/null differ diff --git a/Loops-I/obj/loops.csproj.nuget.g.props b/Loops-I/obj/loops.csproj.nuget.g.props deleted file mode 100644 index d993cd8..0000000 --- a/Loops-I/obj/loops.csproj.nuget.g.props +++ /dev/null @@ -1,18 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Tednokent\.nuget\packages\ - PackageReference - 5.11.1 - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/Loops-I/obj/loops.csproj.nuget.g.targets b/Loops-I/obj/loops.csproj.nuget.g.targets deleted file mode 100644 index 53cfaa1..0000000 --- a/Loops-I/obj/loops.csproj.nuget.g.targets +++ /dev/null @@ -1,6 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/Loops-I/obj/project.assets.json b/Loops-I/obj/project.assets.json deleted file mode 100644 index a9e3f34..0000000 --- a/Loops-I/obj/project.assets.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "version": 3, - "targets": { - "net5.0": {} - }, - "libraries": {}, - "projectFileDependencyGroups": { - "net5.0": [] - }, - "packageFolders": { - "C:\\Users\\Tednokent\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\users\\tednokent\\csharp\\pdev\\loops\\loops.csproj", - "projectName": "loops", - "projectPath": "D:\\users\\tednokent\\csharp\\pdev\\loops\\loops.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\users\\tednokent\\csharp\\pdev\\loops\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/Loops-I/obj/project.nuget.cache b/Loops-I/obj/project.nuget.cache deleted file mode 100644 index 2218c4b..0000000 --- a/Loops-I/obj/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "bq3emcPua0ATqfRCTu/qsQimrQrNYk9X9A77P3KTeEUlRp6qxIKOhLADtF85etklmdXFJAI4N7Ahf57EqqjUjQ==", - "success": true, - "projectFilePath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Loops\\loops.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file diff --git a/Loops-II/.vscode/launch.json b/Loops-II/.vscode/launch.json deleted file mode 100644 index 30fdf8a..0000000 --- a/Loops-II/.vscode/launch.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": ".NET Core Launch (console)", - "type": "coreclr", - "request": "launch", - "preLaunchTask": "build", - "program": "${workspaceFolder}/bin/Debug/net5.0/Loops-II.dll", - "args": [], - "cwd": "${workspaceFolder}", - "console": "integratedTerminal", - "stopAtEntry": false - }, - { - "name": ".NET Core Attach", - "type": "coreclr", - "request": "attach" - } - ] -} \ No newline at end of file diff --git a/Loops-II/.vscode/tasks.json b/Loops-II/.vscode/tasks.json deleted file mode 100644 index c2de3f9..0000000 --- a/Loops-II/.vscode/tasks.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/Loops-II.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/Loops-II.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "${workspaceFolder}/Loops-II.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - } - ] -} \ No newline at end of file diff --git a/Loops-II/Loops-II.csproj b/Loops-II/Loops-II.csproj deleted file mode 100644 index f415ea2..0000000 --- a/Loops-II/Loops-II.csproj +++ /dev/null @@ -1,9 +0,0 @@ - - - - Exe - net5.0 - Loops_II - - - diff --git a/Loops-II/Program.cs b/Loops-II/Program.cs deleted file mode 100644 index f77cef2..0000000 --- a/Loops-II/Program.cs +++ /dev/null @@ -1,47 +0,0 @@ -using System; - -namespace Loops_II -{ - class Program - { - static void Main(string[] args) - { - //while - // (1...(n)) => μ => printConsole - Console.WriteLine("Please enter a number :"); - int number = int.Parse(Console.ReadLine()); - int counter = 1; - int total = 0; - - while (counter <= number) - { - total += counter; - counter++; - } - Console.WriteLine(total); - - Console.WriteLine(total/number); - - // (a...z) => printConsole - char c = 'a'; - while (c < 'z') - { - Console.Write(c + ","); - c++; - } - - //Foreach - string[] cars = new string[]{"BMW", "Toyota", "Ford", "Nissan"}; - - Console.WriteLine(); - foreach (var item in cars) - { - Console.WriteLine(item); - } - - - - - } - } -} diff --git a/Loops-II/bin/Debug/net5.0/Loops-II.deps.json b/Loops-II/bin/Debug/net5.0/Loops-II.deps.json deleted file mode 100644 index b873bf7..0000000 --- a/Loops-II/bin/Debug/net5.0/Loops-II.deps.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v5.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v5.0": { - "Loops-II/1.0.0": { - "runtime": { - "Loops-II.dll": {} - } - } - } - }, - "libraries": { - "Loops-II/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/Loops-II/bin/Debug/net5.0/Loops-II.dll b/Loops-II/bin/Debug/net5.0/Loops-II.dll deleted file mode 100644 index aafcc0b..0000000 Binary files a/Loops-II/bin/Debug/net5.0/Loops-II.dll and /dev/null differ diff --git a/Loops-II/bin/Debug/net5.0/Loops-II.exe b/Loops-II/bin/Debug/net5.0/Loops-II.exe deleted file mode 100644 index 2e5f546..0000000 Binary files a/Loops-II/bin/Debug/net5.0/Loops-II.exe and /dev/null differ diff --git a/Loops-II/bin/Debug/net5.0/Loops-II.pdb b/Loops-II/bin/Debug/net5.0/Loops-II.pdb deleted file mode 100644 index 143f4fc..0000000 Binary files a/Loops-II/bin/Debug/net5.0/Loops-II.pdb and /dev/null differ diff --git a/Loops-II/bin/Debug/net5.0/Loops-II.runtimeconfig.dev.json b/Loops-II/bin/Debug/net5.0/Loops-II.runtimeconfig.dev.json deleted file mode 100644 index f6ba0bd..0000000 --- a/Loops-II/bin/Debug/net5.0/Loops-II.runtimeconfig.dev.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\Tednokent\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Tednokent\\.nuget\\packages" - ] - } -} \ No newline at end of file diff --git a/Loops-II/bin/Debug/net5.0/Loops-II.runtimeconfig.json b/Loops-II/bin/Debug/net5.0/Loops-II.runtimeconfig.json deleted file mode 100644 index a8e7e82..0000000 --- a/Loops-II/bin/Debug/net5.0/Loops-II.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net5.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "5.0.0" - } - } -} \ No newline at end of file diff --git a/Loops-II/bin/Debug/net5.0/ref/Loops-II.dll b/Loops-II/bin/Debug/net5.0/ref/Loops-II.dll deleted file mode 100644 index 9a56bd8..0000000 Binary files a/Loops-II/bin/Debug/net5.0/ref/Loops-II.dll and /dev/null differ diff --git a/Loops-II/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Loops-II/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs deleted file mode 100644 index 2f7e5ec..0000000 --- a/Loops-II/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Loops-II/obj/Debug/net5.0/Loops-II.AssemblyInfo.cs b/Loops-II/obj/Debug/net5.0/Loops-II.AssemblyInfo.cs deleted file mode 100644 index 74fb839..0000000 --- a/Loops-II/obj/Debug/net5.0/Loops-II.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Bu kod araç tarafından oluşturuldu. -// Çalışma Zamanı Sürümü:4.0.30319.42000 -// -// Bu dosyada yapılacak değişiklikler yanlış davranışa neden olabilir ve -// kod yeniden oluşturulursa kaybolur. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Loops-II")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Loops-II")] -[assembly: System.Reflection.AssemblyTitleAttribute("Loops-II")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// MSBuild WriteCodeFragment sınıfı tarafından oluşturuldu. - diff --git a/Loops-II/obj/Debug/net5.0/Loops-II.AssemblyInfoInputs.cache b/Loops-II/obj/Debug/net5.0/Loops-II.AssemblyInfoInputs.cache deleted file mode 100644 index 5b6ac51..0000000 --- a/Loops-II/obj/Debug/net5.0/Loops-II.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -248dacc56955c1b83c0d2aecf660895c3206a0ee diff --git a/Loops-II/obj/Debug/net5.0/Loops-II.GeneratedMSBuildEditorConfig.editorconfig b/Loops-II/obj/Debug/net5.0/Loops-II.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 85f6c48..0000000 --- a/Loops-II/obj/Debug/net5.0/Loops-II.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net5.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.PublishSingleFile = -build_property.IncludeAllContentForSelfExtract = -build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows -build_property.RootNamespace = Loops_II -build_property.ProjectDir = D:\Users\Tednokent\CSharp\pDev\Loops-II\ diff --git a/Loops-II/obj/Debug/net5.0/Loops-II.assets.cache b/Loops-II/obj/Debug/net5.0/Loops-II.assets.cache deleted file mode 100644 index f676d48..0000000 Binary files a/Loops-II/obj/Debug/net5.0/Loops-II.assets.cache and /dev/null differ diff --git a/Loops-II/obj/Debug/net5.0/Loops-II.csproj.AssemblyReference.cache b/Loops-II/obj/Debug/net5.0/Loops-II.csproj.AssemblyReference.cache deleted file mode 100644 index d29614d..0000000 Binary files a/Loops-II/obj/Debug/net5.0/Loops-II.csproj.AssemblyReference.cache and /dev/null differ diff --git a/Loops-II/obj/Debug/net5.0/Loops-II.csproj.CoreCompileInputs.cache b/Loops-II/obj/Debug/net5.0/Loops-II.csproj.CoreCompileInputs.cache deleted file mode 100644 index 09f8afd..0000000 --- a/Loops-II/obj/Debug/net5.0/Loops-II.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -98580b6c8de1b9d966dad12733c92f29f98441cc diff --git a/Loops-II/obj/Debug/net5.0/Loops-II.csproj.FileListAbsolute.txt b/Loops-II/obj/Debug/net5.0/Loops-II.csproj.FileListAbsolute.txt deleted file mode 100644 index 6844eea..0000000 --- a/Loops-II/obj/Debug/net5.0/Loops-II.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,16 +0,0 @@ -D:\Users\Tednokent\CSharp\pDev\Loops-II\bin\Debug\net5.0\Loops-II.exe -D:\Users\Tednokent\CSharp\pDev\Loops-II\bin\Debug\net5.0\Loops-II.deps.json -D:\Users\Tednokent\CSharp\pDev\Loops-II\bin\Debug\net5.0\Loops-II.runtimeconfig.json -D:\Users\Tednokent\CSharp\pDev\Loops-II\bin\Debug\net5.0\Loops-II.runtimeconfig.dev.json -D:\Users\Tednokent\CSharp\pDev\Loops-II\bin\Debug\net5.0\Loops-II.dll -D:\Users\Tednokent\CSharp\pDev\Loops-II\bin\Debug\net5.0\ref\Loops-II.dll -D:\Users\Tednokent\CSharp\pDev\Loops-II\bin\Debug\net5.0\Loops-II.pdb -D:\Users\Tednokent\CSharp\pDev\Loops-II\obj\Debug\net5.0\Loops-II.csproj.AssemblyReference.cache -D:\Users\Tednokent\CSharp\pDev\Loops-II\obj\Debug\net5.0\Loops-II.GeneratedMSBuildEditorConfig.editorconfig -D:\Users\Tednokent\CSharp\pDev\Loops-II\obj\Debug\net5.0\Loops-II.AssemblyInfoInputs.cache -D:\Users\Tednokent\CSharp\pDev\Loops-II\obj\Debug\net5.0\Loops-II.AssemblyInfo.cs -D:\Users\Tednokent\CSharp\pDev\Loops-II\obj\Debug\net5.0\Loops-II.csproj.CoreCompileInputs.cache -D:\Users\Tednokent\CSharp\pDev\Loops-II\obj\Debug\net5.0\Loops-II.dll -D:\Users\Tednokent\CSharp\pDev\Loops-II\obj\Debug\net5.0\ref\Loops-II.dll -D:\Users\Tednokent\CSharp\pDev\Loops-II\obj\Debug\net5.0\Loops-II.pdb -D:\Users\Tednokent\CSharp\pDev\Loops-II\obj\Debug\net5.0\Loops-II.genruntimeconfig.cache diff --git a/Loops-II/obj/Debug/net5.0/Loops-II.dll b/Loops-II/obj/Debug/net5.0/Loops-II.dll deleted file mode 100644 index aafcc0b..0000000 Binary files a/Loops-II/obj/Debug/net5.0/Loops-II.dll and /dev/null differ diff --git a/Loops-II/obj/Debug/net5.0/Loops-II.genruntimeconfig.cache b/Loops-II/obj/Debug/net5.0/Loops-II.genruntimeconfig.cache deleted file mode 100644 index 25bfa4f..0000000 --- a/Loops-II/obj/Debug/net5.0/Loops-II.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -920aec5eb84ad039841178b84f6e1d1611d022d5 diff --git a/Loops-II/obj/Debug/net5.0/Loops-II.pdb b/Loops-II/obj/Debug/net5.0/Loops-II.pdb deleted file mode 100644 index 143f4fc..0000000 Binary files a/Loops-II/obj/Debug/net5.0/Loops-II.pdb and /dev/null differ diff --git a/Loops-II/obj/Debug/net5.0/apphost.exe b/Loops-II/obj/Debug/net5.0/apphost.exe deleted file mode 100644 index 2e5f546..0000000 Binary files a/Loops-II/obj/Debug/net5.0/apphost.exe and /dev/null differ diff --git a/Loops-II/obj/Debug/net5.0/ref/Loops-II.dll b/Loops-II/obj/Debug/net5.0/ref/Loops-II.dll deleted file mode 100644 index 9a56bd8..0000000 Binary files a/Loops-II/obj/Debug/net5.0/ref/Loops-II.dll and /dev/null differ diff --git a/Loops-II/obj/Loops-II.csproj.nuget.dgspec.json b/Loops-II/obj/Loops-II.csproj.nuget.dgspec.json deleted file mode 100644 index da1290a..0000000 --- a/Loops-II/obj/Loops-II.csproj.nuget.dgspec.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\Loops-II\\Loops-II.csproj": {} - }, - "projects": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\Loops-II\\Loops-II.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Users\\Tednokent\\CSharp\\pDev\\Loops-II\\Loops-II.csproj", - "projectName": "Loops-II", - "projectPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Loops-II\\Loops-II.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Loops-II\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/Loops-II/obj/Loops-II.csproj.nuget.g.props b/Loops-II/obj/Loops-II.csproj.nuget.g.props deleted file mode 100644 index d993cd8..0000000 --- a/Loops-II/obj/Loops-II.csproj.nuget.g.props +++ /dev/null @@ -1,18 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Tednokent\.nuget\packages\ - PackageReference - 5.11.1 - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/Loops-II/obj/Loops-II.csproj.nuget.g.targets b/Loops-II/obj/Loops-II.csproj.nuget.g.targets deleted file mode 100644 index 53cfaa1..0000000 --- a/Loops-II/obj/Loops-II.csproj.nuget.g.targets +++ /dev/null @@ -1,6 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/Loops-II/obj/project.assets.json b/Loops-II/obj/project.assets.json deleted file mode 100644 index 41dc7d8..0000000 --- a/Loops-II/obj/project.assets.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "version": 3, - "targets": { - "net5.0": {} - }, - "libraries": {}, - "projectFileDependencyGroups": { - "net5.0": [] - }, - "packageFolders": { - "C:\\Users\\Tednokent\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\users\\tednokent\\csharp\\pdev\\Loops-II\\Loops-II.csproj", - "projectName": "Loops-II", - "projectPath": "D:\\users\\tednokent\\csharp\\pdev\\Loops-II\\Loops-II.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\users\\tednokent\\csharp\\pdev\\Loops-II\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/Loops-II/obj/project.nuget.cache b/Loops-II/obj/project.nuget.cache deleted file mode 100644 index 167ce94..0000000 --- a/Loops-II/obj/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "c9MUR3JQtukFJ3bbEokUd2In6umk5XmYmGkc5qXBp4LT/xHERqffWtqBfZ/VVofjFjJvYj8MTMnQGw6TB6Zyjg==", - "success": true, - "projectFilePath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Loops-II\\Loops-II.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file diff --git a/Arrays/.vscode/launch.json b/Methods/.vscode/launch.json similarity index 90% rename from Arrays/.vscode/launch.json rename to Methods/.vscode/launch.json index aa9b351..72f02fa 100644 --- a/Arrays/.vscode/launch.json +++ b/Methods/.vscode/launch.json @@ -9,7 +9,7 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "build", - "program": "${workspaceFolder}/bin/Debug/net5.0/Arrays.dll", + "program": "${workspaceFolder}/bin/Debug/net5.0/Methods.dll", "args": [], "cwd": "${workspaceFolder}", "console": "integratedTerminal", diff --git a/Arrays/.vscode/tasks.json b/Methods/.vscode/tasks.json similarity index 86% rename from Arrays/.vscode/tasks.json rename to Methods/.vscode/tasks.json index 5bb8343..7be5412 100644 --- a/Arrays/.vscode/tasks.json +++ b/Methods/.vscode/tasks.json @@ -7,7 +7,7 @@ "type": "process", "args": [ "build", - "${workspaceFolder}/Arrays.csproj", + "${workspaceFolder}/Methods.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], @@ -19,7 +19,7 @@ "type": "process", "args": [ "publish", - "${workspaceFolder}/Arrays.csproj", + "${workspaceFolder}/Methods.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], @@ -33,7 +33,7 @@ "watch", "run", "--project", - "${workspaceFolder}/Arrays.csproj" + "${workspaceFolder}/Methods.csproj" ], "problemMatcher": "$msCompile" } diff --git a/Arrays/Arrays.csproj b/Methods/Methods.csproj similarity index 100% rename from Arrays/Arrays.csproj rename to Methods/Methods.csproj diff --git a/Methods/Program.cs b/Methods/Program.cs new file mode 100644 index 0000000..b323126 --- /dev/null +++ b/Methods/Program.cs @@ -0,0 +1,55 @@ +using System; + +namespace Methods +{ + class Program + { + static void Main(string[] args) + { + //erisim_belirteci geri_donustipi method_adi(parametreListesi/arguman) + //{ + ///komutlar + //return; + //} + + int a = 2; + int b = 3; + + Console.WriteLine(a + b); + + int sonuc = Topla(a,b); + System.Console.WriteLine(sonuc); + + Metotlar mt = new Metotlar(); + + mt.EkranaYazdir(Convert.ToString(sonuc)); + + System.Console.WriteLine(); + + + int sonuc2 = mt.ArttırveTopla(ref a, ref b); + mt.EkranaYazdir(Convert.ToString(a+b)); + mt.EkranaYazdir(Convert.ToString(sonuc2)); + + } + + public static int Topla(int deger1, int deger2){ + return (deger1 + deger2); + } + } + + public class Metotlar{ + + public void EkranaYazdir(string veri){ + System.Console.WriteLine(veri); + } + + public int ArttırveTopla(ref int deger1, ref int deger2){ + + deger1++; + deger2++; + + return (deger1 + deger2); + } + } +} diff --git a/First/bin/Debug/net5.0/pDev.deps.json b/Methods/bin/Debug/net5.0/Methods.deps.json similarity index 80% rename from First/bin/Debug/net5.0/pDev.deps.json rename to Methods/bin/Debug/net5.0/Methods.deps.json index 2ce508e..556ee8d 100644 --- a/First/bin/Debug/net5.0/pDev.deps.json +++ b/Methods/bin/Debug/net5.0/Methods.deps.json @@ -6,15 +6,15 @@ "compilationOptions": {}, "targets": { ".NETCoreApp,Version=v5.0": { - "pDev/1.0.0": { + "Methods/1.0.0": { "runtime": { - "pDev.dll": {} + "Methods.dll": {} } } } }, "libraries": { - "pDev/1.0.0": { + "Methods/1.0.0": { "type": "project", "serviceable": false, "sha512": "" diff --git a/Arrays/bin/Debug/net5.0/Arrays.runtimeconfig.dev.json b/Methods/bin/Debug/net5.0/Methods.runtimeconfig.dev.json similarity index 100% rename from Arrays/bin/Debug/net5.0/Arrays.runtimeconfig.dev.json rename to Methods/bin/Debug/net5.0/Methods.runtimeconfig.dev.json diff --git a/Arrays/bin/Debug/net5.0/Arrays.runtimeconfig.json b/Methods/bin/Debug/net5.0/Methods.runtimeconfig.json similarity index 100% rename from Arrays/bin/Debug/net5.0/Arrays.runtimeconfig.json rename to Methods/bin/Debug/net5.0/Methods.runtimeconfig.json diff --git a/Arrays/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Methods/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs similarity index 100% rename from Arrays/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs rename to Methods/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs diff --git a/Arrays/obj/Debug/net5.0/Arrays.AssemblyInfo.cs b/Methods/obj/Debug/net5.0/Methods.AssemblyInfo.cs similarity index 80% rename from Arrays/obj/Debug/net5.0/Arrays.AssemblyInfo.cs rename to Methods/obj/Debug/net5.0/Methods.AssemblyInfo.cs index 68dfe6c..0c57dd6 100644 --- a/Arrays/obj/Debug/net5.0/Arrays.AssemblyInfo.cs +++ b/Methods/obj/Debug/net5.0/Methods.AssemblyInfo.cs @@ -11,12 +11,12 @@ using System; using System.Reflection; -[assembly: System.Reflection.AssemblyCompanyAttribute("Arrays")] +[assembly: System.Reflection.AssemblyCompanyAttribute("Methods")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Arrays")] -[assembly: System.Reflection.AssemblyTitleAttribute("Arrays")] +[assembly: System.Reflection.AssemblyProductAttribute("Methods")] +[assembly: System.Reflection.AssemblyTitleAttribute("Methods")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] // MSBuild WriteCodeFragment sınıfı tarafından oluşturuldu. diff --git a/Arrays/obj/Debug/net5.0/Arrays.GeneratedMSBuildEditorConfig.editorconfig b/Methods/obj/Debug/net5.0/Methods.GeneratedMSBuildEditorConfig.editorconfig similarity index 75% rename from Arrays/obj/Debug/net5.0/Arrays.GeneratedMSBuildEditorConfig.editorconfig rename to Methods/obj/Debug/net5.0/Methods.GeneratedMSBuildEditorConfig.editorconfig index f32ee08..ce3408f 100644 --- a/Arrays/obj/Debug/net5.0/Arrays.GeneratedMSBuildEditorConfig.editorconfig +++ b/Methods/obj/Debug/net5.0/Methods.GeneratedMSBuildEditorConfig.editorconfig @@ -6,5 +6,5 @@ build_property.ProjectTypeGuids = build_property.PublishSingleFile = build_property.IncludeAllContentForSelfExtract = build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows -build_property.RootNamespace = Arrays -build_property.ProjectDir = D:\users\tednokent\Csharp\pDev\Arrays\ +build_property.RootNamespace = Methods +build_property.ProjectDir = d:\Users\Tednokent\CSharp\pDev\Methods\ diff --git a/Methods/obj/Debug/net5.0/Methods.csproj.FileListAbsolute.txt b/Methods/obj/Debug/net5.0/Methods.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..a6e4498 --- /dev/null +++ b/Methods/obj/Debug/net5.0/Methods.csproj.FileListAbsolute.txt @@ -0,0 +1,16 @@ +D:\Users\Tednokent\CSharp\pDev\Methods\bin\Debug\net5.0\Methods.exe +D:\Users\Tednokent\CSharp\pDev\Methods\bin\Debug\net5.0\Methods.deps.json +D:\Users\Tednokent\CSharp\pDev\Methods\bin\Debug\net5.0\Methods.runtimeconfig.json +D:\Users\Tednokent\CSharp\pDev\Methods\bin\Debug\net5.0\Methods.runtimeconfig.dev.json +D:\Users\Tednokent\CSharp\pDev\Methods\bin\Debug\net5.0\Methods.dll +D:\Users\Tednokent\CSharp\pDev\Methods\bin\Debug\net5.0\ref\Methods.dll +D:\Users\Tednokent\CSharp\pDev\Methods\bin\Debug\net5.0\Methods.pdb +D:\Users\Tednokent\CSharp\pDev\Methods\obj\Debug\net5.0\Methods.csproj.AssemblyReference.cache +D:\Users\Tednokent\CSharp\pDev\Methods\obj\Debug\net5.0\Methods.GeneratedMSBuildEditorConfig.editorconfig +D:\Users\Tednokent\CSharp\pDev\Methods\obj\Debug\net5.0\Methods.AssemblyInfoInputs.cache +D:\Users\Tednokent\CSharp\pDev\Methods\obj\Debug\net5.0\Methods.AssemblyInfo.cs +D:\Users\Tednokent\CSharp\pDev\Methods\obj\Debug\net5.0\Methods.csproj.CoreCompileInputs.cache +D:\Users\Tednokent\CSharp\pDev\Methods\obj\Debug\net5.0\Methods.dll +D:\Users\Tednokent\CSharp\pDev\Methods\obj\Debug\net5.0\ref\Methods.dll +D:\Users\Tednokent\CSharp\pDev\Methods\obj\Debug\net5.0\Methods.pdb +D:\Users\Tednokent\CSharp\pDev\Methods\obj\Debug\net5.0\Methods.genruntimeconfig.cache diff --git a/Loops-I/obj/loops.csproj.nuget.dgspec.json b/Methods/obj/Methods.csproj.nuget.dgspec.json similarity index 80% rename from Loops-I/obj/loops.csproj.nuget.dgspec.json rename to Methods/obj/Methods.csproj.nuget.dgspec.json index 918b7bb..ab96925 100644 --- a/Loops-I/obj/loops.csproj.nuget.dgspec.json +++ b/Methods/obj/Methods.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\Loops\\loops.csproj": {} + "D:\\Users\\Tednokent\\CSharp\\pDev\\Methods\\Methods.csproj": {} }, "projects": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\Loops\\loops.csproj": { + "D:\\Users\\Tednokent\\CSharp\\pDev\\Methods\\Methods.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\Users\\Tednokent\\CSharp\\pDev\\Loops\\loops.csproj", - "projectName": "loops", - "projectPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Loops\\loops.csproj", + "projectUniqueName": "D:\\Users\\Tednokent\\CSharp\\pDev\\Methods\\Methods.csproj", + "projectName": "Methods", + "projectPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Methods\\Methods.csproj", "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Loops\\obj\\", + "outputPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Methods\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", diff --git a/Arrays/obj/Arrays.csproj.nuget.g.props b/Methods/obj/Methods.csproj.nuget.g.props similarity index 100% rename from Arrays/obj/Arrays.csproj.nuget.g.props rename to Methods/obj/Methods.csproj.nuget.g.props diff --git a/Arrays/obj/Arrays.csproj.nuget.g.targets b/Methods/obj/Methods.csproj.nuget.g.targets similarity index 100% rename from Arrays/obj/Arrays.csproj.nuget.g.targets rename to Methods/obj/Methods.csproj.nuget.g.targets diff --git a/First/obj/project.assets.json b/Methods/obj/project.assets.json similarity index 88% rename from First/obj/project.assets.json rename to Methods/obj/project.assets.json index b59308e..437c2e1 100644 --- a/First/obj/project.assets.json +++ b/Methods/obj/project.assets.json @@ -13,11 +13,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\Users\\Tednokent\\CSharp\\pDev\\First\\pDev.csproj", - "projectName": "pDev", - "projectPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\First\\pDev.csproj", + "projectUniqueName": "D:\\Users\\Tednokent\\CSharp\\pDev\\Methods\\Methods.csproj", + "projectName": "Methods", + "projectPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Methods\\Methods.csproj", "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\First\\obj\\", + "outputPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Methods\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", diff --git a/Operators/.vscode/launch.json b/Operators/.vscode/launch.json deleted file mode 100644 index 951ae17..0000000 --- a/Operators/.vscode/launch.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - // Use IntelliSense to find out which attributes exist for C# debugging - // Use hover for the description of the existing attributes - // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md - "name": ".NET Core Launch (console)", - "type": "coreclr", - "request": "launch", - "preLaunchTask": "build", - // If you have changed target frameworks, make sure to update the program path. - "program": "${workspaceFolder}/bin/Debug/net5.0/Operators.dll", - "args": [], - "cwd": "${workspaceFolder}", - // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console - "console": "integratedTerminal", - "stopAtEntry": false - }, - { - "name": ".NET Core Attach", - "type": "coreclr", - "request": "attach" - } - ] -} \ No newline at end of file diff --git a/Operators/.vscode/tasks.json b/Operators/.vscode/tasks.json deleted file mode 100644 index 9a680b5..0000000 --- a/Operators/.vscode/tasks.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/Operators.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/Operators.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "${workspaceFolder}/Operators.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - } - ] -} \ No newline at end of file diff --git a/Operators/Operators.csproj b/Operators/Operators.csproj deleted file mode 100644 index 2082704..0000000 --- a/Operators/Operators.csproj +++ /dev/null @@ -1,8 +0,0 @@ - - - - Exe - net5.0 - - - diff --git a/Operators/Program.cs b/Operators/Program.cs deleted file mode 100644 index c207a4a..0000000 --- a/Operators/Program.cs +++ /dev/null @@ -1,109 +0,0 @@ -using System; - -namespace Operators -{ - class Program - { - static void Main(string[] args) - { - // Assignments - int x = 3; - int y = 3; - - Console.WriteLine($"X :{x} , y :{y}"); - Console.ReadKey(); - - - y += 2; // or y = y + 2; - Console.WriteLine($"Addition Y: {y}"); - Console.ReadKey(); - - - y /= 1; // or y = y / 1; - Console.WriteLine($"Dividend Y: {y}"); - Console.ReadKey(); - - x *= 2; // or x = x * 2; - Console.WriteLine($"Multiplication x: {x}"); - Console.ReadKey(); - - - // Logical Operators - // ||, &&, ! - - bool isSuccess = true; - bool isCompleted = false; - - if(isSuccess && isCompleted) - Console.WriteLine("Perfect!"); - - if(isSuccess || isCompleted) - Console.WriteLine("Great!"); - - if(isSuccess && !isCompleted) - Console.WriteLine("Fine"); - - - //Relational Operators - // <, >, <=, >=, ==, != - - int a = 3; - int b = 4; - bool result = a b; - Console.WriteLine(result); - result = a >= b; - Console.WriteLine(result); - result = a <= b; - Console.WriteLine(result); - result = a == b; - Console.WriteLine(result); - result = a != b; - Console.WriteLine(result); - - - // Arithmetic Operators - // +, -, *, /, %, ++, -- - int number1 = 10; - int number2 = 5; - - int result1 = number1 + number2; - Console.WriteLine($"Addition result1 : {result1}"); - - result1 = number1 - number2; - Console.WriteLine($"Subtraction result1 : {result1}"); - - result1 = number1 * number2; - Console.WriteLine($"Multiplication result1 : {result1}"); - - result1 = number1 / number2; - Console.WriteLine($"Division result1 : {result1}"); - - result1 = number1 % number2; - Console.WriteLine($"Mod result1 : {result1}"); - - result1 --; - Console.WriteLine($"Decrement result1 : {result1}"); - - result1 ++; - Console.WriteLine($"Increment result1 : {result1}"); - - - - - - - - - - - - - - - - } - } -} diff --git a/Operators/bin/Debug/net5.0/Operators.deps.json b/Operators/bin/Debug/net5.0/Operators.deps.json deleted file mode 100644 index 3327184..0000000 --- a/Operators/bin/Debug/net5.0/Operators.deps.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v5.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v5.0": { - "Operators/1.0.0": { - "runtime": { - "Operators.dll": {} - } - } - } - }, - "libraries": { - "Operators/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/Operators/bin/Debug/net5.0/Operators.dll b/Operators/bin/Debug/net5.0/Operators.dll deleted file mode 100644 index 7436fbb..0000000 Binary files a/Operators/bin/Debug/net5.0/Operators.dll and /dev/null differ diff --git a/Operators/bin/Debug/net5.0/Operators.exe b/Operators/bin/Debug/net5.0/Operators.exe deleted file mode 100644 index a29692c..0000000 Binary files a/Operators/bin/Debug/net5.0/Operators.exe and /dev/null differ diff --git a/Operators/bin/Debug/net5.0/Operators.pdb b/Operators/bin/Debug/net5.0/Operators.pdb deleted file mode 100644 index fcf16a4..0000000 Binary files a/Operators/bin/Debug/net5.0/Operators.pdb and /dev/null differ diff --git a/Operators/bin/Debug/net5.0/Operators.runtimeconfig.dev.json b/Operators/bin/Debug/net5.0/Operators.runtimeconfig.dev.json deleted file mode 100644 index f6ba0bd..0000000 --- a/Operators/bin/Debug/net5.0/Operators.runtimeconfig.dev.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\Tednokent\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Tednokent\\.nuget\\packages" - ] - } -} \ No newline at end of file diff --git a/Operators/bin/Debug/net5.0/Operators.runtimeconfig.json b/Operators/bin/Debug/net5.0/Operators.runtimeconfig.json deleted file mode 100644 index a8e7e82..0000000 --- a/Operators/bin/Debug/net5.0/Operators.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net5.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "5.0.0" - } - } -} \ No newline at end of file diff --git a/Operators/bin/Debug/net5.0/ref/Operators.dll b/Operators/bin/Debug/net5.0/ref/Operators.dll deleted file mode 100644 index a0ed174..0000000 Binary files a/Operators/bin/Debug/net5.0/ref/Operators.dll and /dev/null differ diff --git a/Operators/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Operators/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs deleted file mode 100644 index 2f7e5ec..0000000 --- a/Operators/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Operators/obj/Debug/net5.0/Operators.AssemblyInfo.cs b/Operators/obj/Debug/net5.0/Operators.AssemblyInfo.cs deleted file mode 100644 index c239aaf..0000000 --- a/Operators/obj/Debug/net5.0/Operators.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Bu kod araç tarafından oluşturuldu. -// Çalışma Zamanı Sürümü:4.0.30319.42000 -// -// Bu dosyada yapılacak değişiklikler yanlış davranışa neden olabilir ve -// kod yeniden oluşturulursa kaybolur. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Operators")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Operators")] -[assembly: System.Reflection.AssemblyTitleAttribute("Operators")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// MSBuild WriteCodeFragment sınıfı tarafından oluşturuldu. - diff --git a/Operators/obj/Debug/net5.0/Operators.AssemblyInfoInputs.cache b/Operators/obj/Debug/net5.0/Operators.AssemblyInfoInputs.cache deleted file mode 100644 index 333c5ce..0000000 --- a/Operators/obj/Debug/net5.0/Operators.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -24e5f4a42b19662db50a457a3ca5af44bc274323 diff --git a/Operators/obj/Debug/net5.0/Operators.GeneratedMSBuildEditorConfig.editorconfig b/Operators/obj/Debug/net5.0/Operators.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 9693f58..0000000 --- a/Operators/obj/Debug/net5.0/Operators.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net5.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.PublishSingleFile = -build_property.IncludeAllContentForSelfExtract = -build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows -build_property.RootNamespace = Operators -build_property.ProjectDir = d:\Users\Tednokent\CSharp\pDev\Operators\ diff --git a/Operators/obj/Debug/net5.0/Operators.assets.cache b/Operators/obj/Debug/net5.0/Operators.assets.cache deleted file mode 100644 index da99145..0000000 Binary files a/Operators/obj/Debug/net5.0/Operators.assets.cache and /dev/null differ diff --git a/Operators/obj/Debug/net5.0/Operators.csproj.AssemblyReference.cache b/Operators/obj/Debug/net5.0/Operators.csproj.AssemblyReference.cache deleted file mode 100644 index f5e894a..0000000 Binary files a/Operators/obj/Debug/net5.0/Operators.csproj.AssemblyReference.cache and /dev/null differ diff --git a/Operators/obj/Debug/net5.0/Operators.csproj.CoreCompileInputs.cache b/Operators/obj/Debug/net5.0/Operators.csproj.CoreCompileInputs.cache deleted file mode 100644 index 662a5ec..0000000 --- a/Operators/obj/Debug/net5.0/Operators.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -f4c4e4e3f304058fd967255a294aad79804e5f59 diff --git a/Operators/obj/Debug/net5.0/Operators.csproj.FileListAbsolute.txt b/Operators/obj/Debug/net5.0/Operators.csproj.FileListAbsolute.txt deleted file mode 100644 index 7b5d885..0000000 --- a/Operators/obj/Debug/net5.0/Operators.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,16 +0,0 @@ -D:\Users\Tednokent\CSharp\pDev\Operators\bin\Debug\net5.0\Operators.exe -D:\Users\Tednokent\CSharp\pDev\Operators\bin\Debug\net5.0\Operators.deps.json -D:\Users\Tednokent\CSharp\pDev\Operators\bin\Debug\net5.0\Operators.runtimeconfig.json -D:\Users\Tednokent\CSharp\pDev\Operators\bin\Debug\net5.0\Operators.runtimeconfig.dev.json -D:\Users\Tednokent\CSharp\pDev\Operators\bin\Debug\net5.0\Operators.dll -D:\Users\Tednokent\CSharp\pDev\Operators\bin\Debug\net5.0\ref\Operators.dll -D:\Users\Tednokent\CSharp\pDev\Operators\bin\Debug\net5.0\Operators.pdb -D:\Users\Tednokent\CSharp\pDev\Operators\obj\Debug\net5.0\Operators.csproj.AssemblyReference.cache -D:\Users\Tednokent\CSharp\pDev\Operators\obj\Debug\net5.0\Operators.GeneratedMSBuildEditorConfig.editorconfig -D:\Users\Tednokent\CSharp\pDev\Operators\obj\Debug\net5.0\Operators.AssemblyInfoInputs.cache -D:\Users\Tednokent\CSharp\pDev\Operators\obj\Debug\net5.0\Operators.AssemblyInfo.cs -D:\Users\Tednokent\CSharp\pDev\Operators\obj\Debug\net5.0\Operators.csproj.CoreCompileInputs.cache -D:\Users\Tednokent\CSharp\pDev\Operators\obj\Debug\net5.0\Operators.dll -D:\Users\Tednokent\CSharp\pDev\Operators\obj\Debug\net5.0\ref\Operators.dll -D:\Users\Tednokent\CSharp\pDev\Operators\obj\Debug\net5.0\Operators.pdb -D:\Users\Tednokent\CSharp\pDev\Operators\obj\Debug\net5.0\Operators.genruntimeconfig.cache diff --git a/Operators/obj/Debug/net5.0/Operators.dll b/Operators/obj/Debug/net5.0/Operators.dll deleted file mode 100644 index 7436fbb..0000000 Binary files a/Operators/obj/Debug/net5.0/Operators.dll and /dev/null differ diff --git a/Operators/obj/Debug/net5.0/Operators.genruntimeconfig.cache b/Operators/obj/Debug/net5.0/Operators.genruntimeconfig.cache deleted file mode 100644 index 6d6f6a6..0000000 --- a/Operators/obj/Debug/net5.0/Operators.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -6b82b36c69f4bcc42986f172031b5feeed2192be diff --git a/Operators/obj/Debug/net5.0/Operators.pdb b/Operators/obj/Debug/net5.0/Operators.pdb deleted file mode 100644 index fcf16a4..0000000 Binary files a/Operators/obj/Debug/net5.0/Operators.pdb and /dev/null differ diff --git a/Operators/obj/Debug/net5.0/apphost.exe b/Operators/obj/Debug/net5.0/apphost.exe deleted file mode 100644 index a29692c..0000000 Binary files a/Operators/obj/Debug/net5.0/apphost.exe and /dev/null differ diff --git a/Operators/obj/Debug/net5.0/ref/Operators.dll b/Operators/obj/Debug/net5.0/ref/Operators.dll deleted file mode 100644 index a0ed174..0000000 Binary files a/Operators/obj/Debug/net5.0/ref/Operators.dll and /dev/null differ diff --git a/Operators/obj/Operators.csproj.nuget.dgspec.json b/Operators/obj/Operators.csproj.nuget.dgspec.json deleted file mode 100644 index d33bb13..0000000 --- a/Operators/obj/Operators.csproj.nuget.dgspec.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\Operators\\Operators.csproj": {} - }, - "projects": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\Operators\\Operators.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Users\\Tednokent\\CSharp\\pDev\\Operators\\Operators.csproj", - "projectName": "Operators", - "projectPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Operators\\Operators.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Operators\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/Operators/obj/Operators.csproj.nuget.g.props b/Operators/obj/Operators.csproj.nuget.g.props deleted file mode 100644 index d993cd8..0000000 --- a/Operators/obj/Operators.csproj.nuget.g.props +++ /dev/null @@ -1,18 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Tednokent\.nuget\packages\ - PackageReference - 5.11.1 - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/Operators/obj/Operators.csproj.nuget.g.targets b/Operators/obj/Operators.csproj.nuget.g.targets deleted file mode 100644 index 53cfaa1..0000000 --- a/Operators/obj/Operators.csproj.nuget.g.targets +++ /dev/null @@ -1,6 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/Operators/obj/project.assets.json b/Operators/obj/project.assets.json deleted file mode 100644 index f86169c..0000000 --- a/Operators/obj/project.assets.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "version": 3, - "targets": { - "net5.0": {} - }, - "libraries": {}, - "projectFileDependencyGroups": { - "net5.0": [] - }, - "packageFolders": { - "C:\\Users\\Tednokent\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Users\\Tednokent\\CSharp\\pDev\\Operators\\Operators.csproj", - "projectName": "Operators", - "projectPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Operators\\Operators.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Operators\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/Operators/obj/project.nuget.cache b/Operators/obj/project.nuget.cache deleted file mode 100644 index 039a391..0000000 --- a/Operators/obj/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "TtrOmXXnFy0hPEG4WNd/teeb7oXGHGjbqz/YlrAFb9qILocQpE7MSpVoKcUeCnI8u7f2f/Fva6LTPZATc036Fw==", - "success": true, - "projectFilePath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Operators\\Operators.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file diff --git a/Switch-Case/.vscode/launch.json b/Switch-Case/.vscode/launch.json deleted file mode 100644 index 4ca53f0..0000000 --- a/Switch-Case/.vscode/launch.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": ".NET Core Launch (console)", - "type": "coreclr", - "request": "launch", - "preLaunchTask": "build", - "program": "${workspaceFolder}/bin/Debug/net5.0/Switch-Case.dll", - "args": [], - "cwd": "${workspaceFolder}", - "console": "integratedTerminal", - "stopAtEntry": false - }, - { - "name": ".NET Core Attach", - "type": "coreclr", - "request": "attach" - } - ] -} \ No newline at end of file diff --git a/Switch-Case/.vscode/tasks.json b/Switch-Case/.vscode/tasks.json deleted file mode 100644 index 4cfa30b..0000000 --- a/Switch-Case/.vscode/tasks.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/Switch-Case.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/Switch-Case.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "${workspaceFolder}/Switch-Case.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - } - ] -} \ No newline at end of file diff --git a/Switch-Case/Program.cs b/Switch-Case/Program.cs deleted file mode 100644 index 7f59b60..0000000 --- a/Switch-Case/Program.cs +++ /dev/null @@ -1,67 +0,0 @@ -using System; - -namespace Switch_Case -{ - class Program - { - static void Main(string[] args) - { - int month = DateTime.Now.Month; - - // Expression - switch (month) - { - case 1: - Console.WriteLine("You're in january."); - break; - - case 2: - Console.WriteLine("You're in february."); - break; - - case 3: - Console.WriteLine("You're in march."); - break; - - case 5: - Console.WriteLine("you're in may."); - break; - - default: - Console.WriteLine("Wrong data entry."); - break; - } - - - switch (month) - { - case 3: - case 4: - case 5: - Console.WriteLine("You're in the spring season."); - break; - - case 6: - case 7: - case 8: - Console.WriteLine("You're in the summer season."); - break; - - case 9: - case 10: - case 11: - Console.WriteLine("You're in the autumn season."); - break; - - case 12: - case 1: - case 2: - Console.WriteLine("You're in the winter season."); - break; - - default: - break; - } - } - } -} diff --git a/Switch-Case/Switch-Case.csproj b/Switch-Case/Switch-Case.csproj deleted file mode 100644 index 555c6df..0000000 --- a/Switch-Case/Switch-Case.csproj +++ /dev/null @@ -1,9 +0,0 @@ - - - - Exe - net5.0 - Switch_Case - - - diff --git a/Switch-Case/bin/Debug/net5.0/Switch-Case.deps.json b/Switch-Case/bin/Debug/net5.0/Switch-Case.deps.json deleted file mode 100644 index c82d3b4..0000000 --- a/Switch-Case/bin/Debug/net5.0/Switch-Case.deps.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v5.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v5.0": { - "Switch-Case/1.0.0": { - "runtime": { - "Switch-Case.dll": {} - } - } - } - }, - "libraries": { - "Switch-Case/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/Switch-Case/bin/Debug/net5.0/Switch-Case.dll b/Switch-Case/bin/Debug/net5.0/Switch-Case.dll deleted file mode 100644 index 66898e7..0000000 Binary files a/Switch-Case/bin/Debug/net5.0/Switch-Case.dll and /dev/null differ diff --git a/Switch-Case/bin/Debug/net5.0/Switch-Case.exe b/Switch-Case/bin/Debug/net5.0/Switch-Case.exe deleted file mode 100644 index f54389f..0000000 Binary files a/Switch-Case/bin/Debug/net5.0/Switch-Case.exe and /dev/null differ diff --git a/Switch-Case/bin/Debug/net5.0/Switch-Case.pdb b/Switch-Case/bin/Debug/net5.0/Switch-Case.pdb deleted file mode 100644 index 850878d..0000000 Binary files a/Switch-Case/bin/Debug/net5.0/Switch-Case.pdb and /dev/null differ diff --git a/Switch-Case/bin/Debug/net5.0/Switch-Case.runtimeconfig.dev.json b/Switch-Case/bin/Debug/net5.0/Switch-Case.runtimeconfig.dev.json deleted file mode 100644 index f6ba0bd..0000000 --- a/Switch-Case/bin/Debug/net5.0/Switch-Case.runtimeconfig.dev.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\Tednokent\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Tednokent\\.nuget\\packages" - ] - } -} \ No newline at end of file diff --git a/Switch-Case/bin/Debug/net5.0/Switch-Case.runtimeconfig.json b/Switch-Case/bin/Debug/net5.0/Switch-Case.runtimeconfig.json deleted file mode 100644 index a8e7e82..0000000 --- a/Switch-Case/bin/Debug/net5.0/Switch-Case.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net5.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "5.0.0" - } - } -} \ No newline at end of file diff --git a/Switch-Case/bin/Debug/net5.0/ref/Switch-Case.dll b/Switch-Case/bin/Debug/net5.0/ref/Switch-Case.dll deleted file mode 100644 index 4e0e57d..0000000 Binary files a/Switch-Case/bin/Debug/net5.0/ref/Switch-Case.dll and /dev/null differ diff --git a/Switch-Case/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Switch-Case/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs deleted file mode 100644 index 2f7e5ec..0000000 --- a/Switch-Case/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Switch-Case/obj/Debug/net5.0/Switch-Case.AssemblyInfo.cs b/Switch-Case/obj/Debug/net5.0/Switch-Case.AssemblyInfo.cs deleted file mode 100644 index 37d3012..0000000 --- a/Switch-Case/obj/Debug/net5.0/Switch-Case.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Bu kod araç tarafından oluşturuldu. -// Çalışma Zamanı Sürümü:4.0.30319.42000 -// -// Bu dosyada yapılacak değişiklikler yanlış davranışa neden olabilir ve -// kod yeniden oluşturulursa kaybolur. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Switch-Case")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Switch-Case")] -[assembly: System.Reflection.AssemblyTitleAttribute("Switch-Case")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// MSBuild WriteCodeFragment sınıfı tarafından oluşturuldu. - diff --git a/Switch-Case/obj/Debug/net5.0/Switch-Case.AssemblyInfoInputs.cache b/Switch-Case/obj/Debug/net5.0/Switch-Case.AssemblyInfoInputs.cache deleted file mode 100644 index 0900f4b..0000000 --- a/Switch-Case/obj/Debug/net5.0/Switch-Case.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -098ca995073e37645512e092b610d726081497ef diff --git a/Switch-Case/obj/Debug/net5.0/Switch-Case.GeneratedMSBuildEditorConfig.editorconfig b/Switch-Case/obj/Debug/net5.0/Switch-Case.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 53fe9f8..0000000 --- a/Switch-Case/obj/Debug/net5.0/Switch-Case.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net5.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.PublishSingleFile = -build_property.IncludeAllContentForSelfExtract = -build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows -build_property.RootNamespace = Switch_Case -build_property.ProjectDir = D:\Users\Tednokent\CSharp\pDev\Switch-Case\ diff --git a/Switch-Case/obj/Debug/net5.0/Switch-Case.assets.cache b/Switch-Case/obj/Debug/net5.0/Switch-Case.assets.cache deleted file mode 100644 index 9abae37..0000000 Binary files a/Switch-Case/obj/Debug/net5.0/Switch-Case.assets.cache and /dev/null differ diff --git a/Switch-Case/obj/Debug/net5.0/Switch-Case.csproj.AssemblyReference.cache b/Switch-Case/obj/Debug/net5.0/Switch-Case.csproj.AssemblyReference.cache deleted file mode 100644 index d29614d..0000000 Binary files a/Switch-Case/obj/Debug/net5.0/Switch-Case.csproj.AssemblyReference.cache and /dev/null differ diff --git a/Switch-Case/obj/Debug/net5.0/Switch-Case.csproj.CoreCompileInputs.cache b/Switch-Case/obj/Debug/net5.0/Switch-Case.csproj.CoreCompileInputs.cache deleted file mode 100644 index ee2434a..0000000 --- a/Switch-Case/obj/Debug/net5.0/Switch-Case.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -d97cf40f05bb2e70f9e3741b6c327f8999331204 diff --git a/Switch-Case/obj/Debug/net5.0/Switch-Case.csproj.FileListAbsolute.txt b/Switch-Case/obj/Debug/net5.0/Switch-Case.csproj.FileListAbsolute.txt deleted file mode 100644 index 3b74b71..0000000 --- a/Switch-Case/obj/Debug/net5.0/Switch-Case.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,16 +0,0 @@ -D:\Users\Tednokent\CSharp\pDev\Switch-Case\bin\Debug\net5.0\Switch-Case.exe -D:\Users\Tednokent\CSharp\pDev\Switch-Case\bin\Debug\net5.0\Switch-Case.deps.json -D:\Users\Tednokent\CSharp\pDev\Switch-Case\bin\Debug\net5.0\Switch-Case.runtimeconfig.json -D:\Users\Tednokent\CSharp\pDev\Switch-Case\bin\Debug\net5.0\Switch-Case.runtimeconfig.dev.json -D:\Users\Tednokent\CSharp\pDev\Switch-Case\bin\Debug\net5.0\Switch-Case.dll -D:\Users\Tednokent\CSharp\pDev\Switch-Case\bin\Debug\net5.0\ref\Switch-Case.dll -D:\Users\Tednokent\CSharp\pDev\Switch-Case\bin\Debug\net5.0\Switch-Case.pdb -D:\Users\Tednokent\CSharp\pDev\Switch-Case\obj\Debug\net5.0\Switch-Case.csproj.AssemblyReference.cache -D:\Users\Tednokent\CSharp\pDev\Switch-Case\obj\Debug\net5.0\Switch-Case.GeneratedMSBuildEditorConfig.editorconfig -D:\Users\Tednokent\CSharp\pDev\Switch-Case\obj\Debug\net5.0\Switch-Case.AssemblyInfoInputs.cache -D:\Users\Tednokent\CSharp\pDev\Switch-Case\obj\Debug\net5.0\Switch-Case.AssemblyInfo.cs -D:\Users\Tednokent\CSharp\pDev\Switch-Case\obj\Debug\net5.0\Switch-Case.csproj.CoreCompileInputs.cache -D:\Users\Tednokent\CSharp\pDev\Switch-Case\obj\Debug\net5.0\Switch-Case.dll -D:\Users\Tednokent\CSharp\pDev\Switch-Case\obj\Debug\net5.0\ref\Switch-Case.dll -D:\Users\Tednokent\CSharp\pDev\Switch-Case\obj\Debug\net5.0\Switch-Case.pdb -D:\Users\Tednokent\CSharp\pDev\Switch-Case\obj\Debug\net5.0\Switch-Case.genruntimeconfig.cache diff --git a/Switch-Case/obj/Debug/net5.0/Switch-Case.dll b/Switch-Case/obj/Debug/net5.0/Switch-Case.dll deleted file mode 100644 index 66898e7..0000000 Binary files a/Switch-Case/obj/Debug/net5.0/Switch-Case.dll and /dev/null differ diff --git a/Switch-Case/obj/Debug/net5.0/Switch-Case.genruntimeconfig.cache b/Switch-Case/obj/Debug/net5.0/Switch-Case.genruntimeconfig.cache deleted file mode 100644 index e52ae11..0000000 --- a/Switch-Case/obj/Debug/net5.0/Switch-Case.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -74dfaed63001979e67dbfc67da7c57811e56e73c diff --git a/Switch-Case/obj/Debug/net5.0/Switch-Case.pdb b/Switch-Case/obj/Debug/net5.0/Switch-Case.pdb deleted file mode 100644 index 850878d..0000000 Binary files a/Switch-Case/obj/Debug/net5.0/Switch-Case.pdb and /dev/null differ diff --git a/Switch-Case/obj/Debug/net5.0/apphost.exe b/Switch-Case/obj/Debug/net5.0/apphost.exe deleted file mode 100644 index f54389f..0000000 Binary files a/Switch-Case/obj/Debug/net5.0/apphost.exe and /dev/null differ diff --git a/Switch-Case/obj/Debug/net5.0/ref/Switch-Case.dll b/Switch-Case/obj/Debug/net5.0/ref/Switch-Case.dll deleted file mode 100644 index 4e0e57d..0000000 Binary files a/Switch-Case/obj/Debug/net5.0/ref/Switch-Case.dll and /dev/null differ diff --git a/Switch-Case/obj/Switch-Case.csproj.nuget.dgspec.json b/Switch-Case/obj/Switch-Case.csproj.nuget.dgspec.json deleted file mode 100644 index 2538057..0000000 --- a/Switch-Case/obj/Switch-Case.csproj.nuget.dgspec.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\Switch-Case\\Switch-Case.csproj": {} - }, - "projects": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\Switch-Case\\Switch-Case.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Users\\Tednokent\\CSharp\\pDev\\Switch-Case\\Switch-Case.csproj", - "projectName": "Switch-Case", - "projectPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Switch-Case\\Switch-Case.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Switch-Case\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/Switch-Case/obj/Switch-Case.csproj.nuget.g.props b/Switch-Case/obj/Switch-Case.csproj.nuget.g.props deleted file mode 100644 index d993cd8..0000000 --- a/Switch-Case/obj/Switch-Case.csproj.nuget.g.props +++ /dev/null @@ -1,18 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Tednokent\.nuget\packages\ - PackageReference - 5.11.1 - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/Switch-Case/obj/Switch-Case.csproj.nuget.g.targets b/Switch-Case/obj/Switch-Case.csproj.nuget.g.targets deleted file mode 100644 index 53cfaa1..0000000 --- a/Switch-Case/obj/Switch-Case.csproj.nuget.g.targets +++ /dev/null @@ -1,6 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/Switch-Case/obj/project.assets.json b/Switch-Case/obj/project.assets.json deleted file mode 100644 index 0faea80..0000000 --- a/Switch-Case/obj/project.assets.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "version": 3, - "targets": { - "net5.0": {} - }, - "libraries": {}, - "projectFileDependencyGroups": { - "net5.0": [] - }, - "packageFolders": { - "C:\\Users\\Tednokent\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\users\\tednokent\\csharp\\pdev\\Switch-Case\\Switch-Case.csproj", - "projectName": "Switch-Case", - "projectPath": "D:\\users\\tednokent\\csharp\\pdev\\Switch-Case\\Switch-Case.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\users\\tednokent\\csharp\\pdev\\Switch-Case\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/Switch-Case/obj/project.nuget.cache b/Switch-Case/obj/project.nuget.cache deleted file mode 100644 index 54c2dab..0000000 --- a/Switch-Case/obj/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "9BlTGdMZ0YoRGUT6WaBqh336dw2JOQKwgh9rTkS6IIvAn0XMSASvzpcFMZWEv175Ojldc/iPLFXMB96pYSF0Bw==", - "success": true, - "projectFilePath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Switch-Case\\Switch-Case.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file diff --git a/TypeConversion/.vscode/launch.json b/TypeConversion/.vscode/launch.json deleted file mode 100644 index de1470a..0000000 --- a/TypeConversion/.vscode/launch.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": ".NET Core Launch (console)", - "type": "coreclr", - "request": "launch", - "preLaunchTask": "build", - "program": "${workspaceFolder}/bin/Debug/net5.0/TypeConversion.dll", - "args": [], - "cwd": "${workspaceFolder}", - "console": "integratedTerminal", - "stopAtEntry": false - }, - { - "name": ".NET Core Attach", - "type": "coreclr", - "request": "attach" - } - ] -} \ No newline at end of file diff --git a/TypeConversion/.vscode/tasks.json b/TypeConversion/.vscode/tasks.json deleted file mode 100644 index 8c35ce3..0000000 --- a/TypeConversion/.vscode/tasks.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/TypeConversion.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/TypeConversion.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "${workspaceFolder}/TypeConversion.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - } - ] -} \ No newline at end of file diff --git a/TypeConversion/Program.cs b/TypeConversion/Program.cs deleted file mode 100644 index 4d3b5a9..0000000 --- a/TypeConversion/Program.cs +++ /dev/null @@ -1,99 +0,0 @@ -using System; - -namespace TypeConversion -{ - class Program - { - static void Main(string[] args) - { - // Implicit Convertion (Bilinçsiz Dönüşüm) - - byte b = 5; - sbyte sb = 10; - short sh = 15; - - int i = b + sb + sh; - Console.WriteLine("i :" + i); - - long h = i; - Console.WriteLine("h :" + h); - - float f = h; - Console.WriteLine("f :" + f); - - string s = "Burak"; - char c = 'A'; - object o = s + c + f; - Console.WriteLine("o :" + o); - - - - // Explicit Convertion (Bilinçli Dönüşüm) - - int i1 = 4; - byte b1 = (byte)i1; - Console.WriteLine("b1 :" + b1); - - int i2 = 4; - byte b2= (byte)i2; - Console.WriteLine("b2 :" + b2); - - float ff = 10.3f; - byte b3 = (byte)ff; - Console.WriteLine("b3 :" + b3); - - - // ToString Method - - int xx = 6; - string yy = xx.ToString(); - Console.WriteLine("yy :" + yy); - int xxx = int.Parse(yy); - int zz = xxx * 2; - Console.WriteLine("zz :" + zz); - - string ss = 12.5f.ToString(); - Console.WriteLine("ss :" + ss); - - - // System.Convert Method - - string s1 = "10", s2="20"; - int number1, number2; - int total; - - number1 = Convert.ToInt32(s1); - number2 = Convert.ToInt32(s2); - total = number1 + number2; - - Console.WriteLine("Total :" + total); - - string time = "03.01.2020"; - DateTime dt = Convert.ToDateTime(time); - Console.WriteLine("dt :" + dt); - - // Parse Method - ParseMethod(); - - } - - public static void ParseMethod(){ - - string sentence1 ="10"; - string sentence2 = "10,25"; - int n1; - double d1; - - n1 = Int32.Parse(sentence1); - d1 = Double.Parse(sentence2); - - Console.WriteLine("n1 :" + n1); - Console.WriteLine("d1 :" + d1); - - double dd = 10.25; - double dddd = dd + d1; - Console.WriteLine("dddd :" + dddd); - - } - } -} diff --git a/TypeConversion/TypeConversion.csproj b/TypeConversion/TypeConversion.csproj deleted file mode 100644 index 2082704..0000000 --- a/TypeConversion/TypeConversion.csproj +++ /dev/null @@ -1,8 +0,0 @@ - - - - Exe - net5.0 - - - diff --git a/TypeConversion/bin/Debug/net5.0/TypeConversion.deps.json b/TypeConversion/bin/Debug/net5.0/TypeConversion.deps.json deleted file mode 100644 index 4aacac8..0000000 --- a/TypeConversion/bin/Debug/net5.0/TypeConversion.deps.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v5.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v5.0": { - "TypeConversion/1.0.0": { - "runtime": { - "TypeConversion.dll": {} - } - } - } - }, - "libraries": { - "TypeConversion/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/TypeConversion/bin/Debug/net5.0/TypeConversion.dll b/TypeConversion/bin/Debug/net5.0/TypeConversion.dll deleted file mode 100644 index e8e151c..0000000 Binary files a/TypeConversion/bin/Debug/net5.0/TypeConversion.dll and /dev/null differ diff --git a/TypeConversion/bin/Debug/net5.0/TypeConversion.exe b/TypeConversion/bin/Debug/net5.0/TypeConversion.exe deleted file mode 100644 index 6d27523..0000000 Binary files a/TypeConversion/bin/Debug/net5.0/TypeConversion.exe and /dev/null differ diff --git a/TypeConversion/bin/Debug/net5.0/TypeConversion.pdb b/TypeConversion/bin/Debug/net5.0/TypeConversion.pdb deleted file mode 100644 index 07c991a..0000000 Binary files a/TypeConversion/bin/Debug/net5.0/TypeConversion.pdb and /dev/null differ diff --git a/TypeConversion/bin/Debug/net5.0/TypeConversion.runtimeconfig.dev.json b/TypeConversion/bin/Debug/net5.0/TypeConversion.runtimeconfig.dev.json deleted file mode 100644 index f6ba0bd..0000000 --- a/TypeConversion/bin/Debug/net5.0/TypeConversion.runtimeconfig.dev.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\Tednokent\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Tednokent\\.nuget\\packages" - ] - } -} \ No newline at end of file diff --git a/TypeConversion/bin/Debug/net5.0/TypeConversion.runtimeconfig.json b/TypeConversion/bin/Debug/net5.0/TypeConversion.runtimeconfig.json deleted file mode 100644 index a8e7e82..0000000 --- a/TypeConversion/bin/Debug/net5.0/TypeConversion.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net5.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "5.0.0" - } - } -} \ No newline at end of file diff --git a/TypeConversion/bin/Debug/net5.0/ref/TypeConversion.dll b/TypeConversion/bin/Debug/net5.0/ref/TypeConversion.dll deleted file mode 100644 index 95f3d2b..0000000 Binary files a/TypeConversion/bin/Debug/net5.0/ref/TypeConversion.dll and /dev/null differ diff --git a/TypeConversion/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/TypeConversion/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs deleted file mode 100644 index 2f7e5ec..0000000 --- a/TypeConversion/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/TypeConversion/obj/Debug/net5.0/TypeConversion.AssemblyInfo.cs b/TypeConversion/obj/Debug/net5.0/TypeConversion.AssemblyInfo.cs deleted file mode 100644 index 82475ca..0000000 --- a/TypeConversion/obj/Debug/net5.0/TypeConversion.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("TypeConversion")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("TypeConversion")] -[assembly: System.Reflection.AssemblyTitleAttribute("TypeConversion")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// MSBuild WriteCodeFragment sınıfı tarafından oluşturuldu. - diff --git a/TypeConversion/obj/Debug/net5.0/TypeConversion.AssemblyInfoInputs.cache b/TypeConversion/obj/Debug/net5.0/TypeConversion.AssemblyInfoInputs.cache deleted file mode 100644 index 4177fb1..0000000 --- a/TypeConversion/obj/Debug/net5.0/TypeConversion.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -02cbb42119bf642d7271cd605a1db06dbbf9bae1 diff --git a/TypeConversion/obj/Debug/net5.0/TypeConversion.GeneratedMSBuildEditorConfig.editorconfig b/TypeConversion/obj/Debug/net5.0/TypeConversion.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 1d77f90..0000000 --- a/TypeConversion/obj/Debug/net5.0/TypeConversion.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net5.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.PublishSingleFile = -build_property.IncludeAllContentForSelfExtract = -build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows -build_property.RootNamespace = TypeConversion -build_property.ProjectDir = D:\Users\Tednokent\CSharp\pDev\TypeConversion\ diff --git a/TypeConversion/obj/Debug/net5.0/TypeConversion.assets.cache b/TypeConversion/obj/Debug/net5.0/TypeConversion.assets.cache deleted file mode 100644 index f0c1157..0000000 Binary files a/TypeConversion/obj/Debug/net5.0/TypeConversion.assets.cache and /dev/null differ diff --git a/TypeConversion/obj/Debug/net5.0/TypeConversion.csproj.AssemblyReference.cache b/TypeConversion/obj/Debug/net5.0/TypeConversion.csproj.AssemblyReference.cache deleted file mode 100644 index 6b1e594..0000000 Binary files a/TypeConversion/obj/Debug/net5.0/TypeConversion.csproj.AssemblyReference.cache and /dev/null differ diff --git a/TypeConversion/obj/Debug/net5.0/TypeConversion.csproj.CoreCompileInputs.cache b/TypeConversion/obj/Debug/net5.0/TypeConversion.csproj.CoreCompileInputs.cache deleted file mode 100644 index 549c536..0000000 --- a/TypeConversion/obj/Debug/net5.0/TypeConversion.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -52fbdac270a14087e57a3fc64d8f36b20ac647d5 diff --git a/TypeConversion/obj/Debug/net5.0/TypeConversion.csproj.FileListAbsolute.txt b/TypeConversion/obj/Debug/net5.0/TypeConversion.csproj.FileListAbsolute.txt deleted file mode 100644 index 64eeedb..0000000 --- a/TypeConversion/obj/Debug/net5.0/TypeConversion.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,16 +0,0 @@ -D:\users\Tednokent\CSharp\pDev\TypeConversion\bin\Debug\net5.0\TypeConversion.exe -D:\users\Tednokent\CSharp\pDev\TypeConversion\bin\Debug\net5.0\TypeConversion.deps.json -D:\users\Tednokent\CSharp\pDev\TypeConversion\bin\Debug\net5.0\TypeConversion.runtimeconfig.json -D:\users\Tednokent\CSharp\pDev\TypeConversion\bin\Debug\net5.0\TypeConversion.runtimeconfig.dev.json -D:\users\Tednokent\CSharp\pDev\TypeConversion\bin\Debug\net5.0\TypeConversion.dll -D:\users\Tednokent\CSharp\pDev\TypeConversion\bin\Debug\net5.0\ref\TypeConversion.dll -D:\users\Tednokent\CSharp\pDev\TypeConversion\bin\Debug\net5.0\TypeConversion.pdb -D:\users\Tednokent\CSharp\pDev\TypeConversion\obj\Debug\net5.0\TypeConversion.csproj.AssemblyReference.cache -D:\users\Tednokent\CSharp\pDev\TypeConversion\obj\Debug\net5.0\TypeConversion.GeneratedMSBuildEditorConfig.editorconfig -D:\users\Tednokent\CSharp\pDev\TypeConversion\obj\Debug\net5.0\TypeConversion.AssemblyInfoInputs.cache -D:\users\Tednokent\CSharp\pDev\TypeConversion\obj\Debug\net5.0\TypeConversion.AssemblyInfo.cs -D:\users\Tednokent\CSharp\pDev\TypeConversion\obj\Debug\net5.0\TypeConversion.csproj.CoreCompileInputs.cache -D:\users\Tednokent\CSharp\pDev\TypeConversion\obj\Debug\net5.0\TypeConversion.dll -D:\users\Tednokent\CSharp\pDev\TypeConversion\obj\Debug\net5.0\ref\TypeConversion.dll -D:\users\Tednokent\CSharp\pDev\TypeConversion\obj\Debug\net5.0\TypeConversion.pdb -D:\users\Tednokent\CSharp\pDev\TypeConversion\obj\Debug\net5.0\TypeConversion.genruntimeconfig.cache diff --git a/TypeConversion/obj/Debug/net5.0/TypeConversion.dll b/TypeConversion/obj/Debug/net5.0/TypeConversion.dll deleted file mode 100644 index e8e151c..0000000 Binary files a/TypeConversion/obj/Debug/net5.0/TypeConversion.dll and /dev/null differ diff --git a/TypeConversion/obj/Debug/net5.0/TypeConversion.genruntimeconfig.cache b/TypeConversion/obj/Debug/net5.0/TypeConversion.genruntimeconfig.cache deleted file mode 100644 index 6c87623..0000000 --- a/TypeConversion/obj/Debug/net5.0/TypeConversion.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -fcca3dc8d487d6fb12b42367be590c713392a948 diff --git a/TypeConversion/obj/Debug/net5.0/TypeConversion.pdb b/TypeConversion/obj/Debug/net5.0/TypeConversion.pdb deleted file mode 100644 index 07c991a..0000000 Binary files a/TypeConversion/obj/Debug/net5.0/TypeConversion.pdb and /dev/null differ diff --git a/TypeConversion/obj/Debug/net5.0/apphost.exe b/TypeConversion/obj/Debug/net5.0/apphost.exe deleted file mode 100644 index 6d27523..0000000 Binary files a/TypeConversion/obj/Debug/net5.0/apphost.exe and /dev/null differ diff --git a/TypeConversion/obj/Debug/net5.0/ref/TypeConversion.dll b/TypeConversion/obj/Debug/net5.0/ref/TypeConversion.dll deleted file mode 100644 index 95f3d2b..0000000 Binary files a/TypeConversion/obj/Debug/net5.0/ref/TypeConversion.dll and /dev/null differ diff --git a/TypeConversion/obj/TypeConversion.csproj.nuget.dgspec.json b/TypeConversion/obj/TypeConversion.csproj.nuget.dgspec.json deleted file mode 100644 index d11139b..0000000 --- a/TypeConversion/obj/TypeConversion.csproj.nuget.dgspec.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\TypeConversion\\TypeConversion.csproj": {} - }, - "projects": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\TypeConversion\\TypeConversion.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Users\\Tednokent\\CSharp\\pDev\\TypeConversion\\TypeConversion.csproj", - "projectName": "TypeConversion", - "projectPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\TypeConversion\\TypeConversion.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\TypeConversion\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/TypeConversion/obj/TypeConversion.csproj.nuget.g.props b/TypeConversion/obj/TypeConversion.csproj.nuget.g.props deleted file mode 100644 index d993cd8..0000000 --- a/TypeConversion/obj/TypeConversion.csproj.nuget.g.props +++ /dev/null @@ -1,18 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Tednokent\.nuget\packages\ - PackageReference - 5.11.1 - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/TypeConversion/obj/TypeConversion.csproj.nuget.g.targets b/TypeConversion/obj/TypeConversion.csproj.nuget.g.targets deleted file mode 100644 index 53cfaa1..0000000 --- a/TypeConversion/obj/TypeConversion.csproj.nuget.g.targets +++ /dev/null @@ -1,6 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/TypeConversion/obj/project.assets.json b/TypeConversion/obj/project.assets.json deleted file mode 100644 index f7ad883..0000000 --- a/TypeConversion/obj/project.assets.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "version": 3, - "targets": { - "net5.0": {} - }, - "libraries": {}, - "projectFileDependencyGroups": { - "net5.0": [] - }, - "packageFolders": { - "C:\\Users\\Tednokent\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\users\\Tednokent\\CSharp\\pDev\\TypeConversion\\TypeConversion.csproj", - "projectName": "TypeConversion", - "projectPath": "D:\\users\\Tednokent\\CSharp\\pDev\\TypeConversion\\TypeConversion.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\users\\Tednokent\\CSharp\\pDev\\TypeConversion\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/TypeConversion/obj/project.nuget.cache b/TypeConversion/obj/project.nuget.cache deleted file mode 100644 index 748a3f0..0000000 --- a/TypeConversion/obj/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "d24yuOuWDuzxJ+s+jePk7GGP45KeGHo7YcMR9IXuvRRndUlQXidy4q/yLU/ywIxzDj4aN0eQiGASEC1dnny92w==", - "success": true, - "projectFilePath": "D:\\Users\\Tednokent\\CSharp\\pDev\\TypeConversion\\TypeConversion.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file diff --git a/Variables/.vscode/launch.json b/Variables/.vscode/launch.json deleted file mode 100644 index cb1afb6..0000000 --- a/Variables/.vscode/launch.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": ".NET Core Launch (console)", - "type": "coreclr", - "request": "launch", - "preLaunchTask": "build", - "program": "${workspaceFolder}/bin/Debug/net5.0/Variables.dll", - "args": [], - "cwd": "${workspaceFolder}", - "console": "integratedTerminal", // integratedTerminal(vs code terminal), externalTerminal(harici terminal), internalTerminal - "stopAtEntry": false - }, - { - "name": ".NET Core Attach", - "type": "coreclr", - "request": "attach" - } - ] -} \ No newline at end of file diff --git a/Variables/.vscode/tasks.json b/Variables/.vscode/tasks.json deleted file mode 100644 index ea0ccea..0000000 --- a/Variables/.vscode/tasks.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/Variables.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/Variables.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "${workspaceFolder}/Variables.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - } - ] -} \ No newline at end of file diff --git a/Variables/Program.cs b/Variables/Program.cs deleted file mode 100644 index 368fccc..0000000 --- a/Variables/Program.cs +++ /dev/null @@ -1,104 +0,0 @@ -using System; - -namespace Variables -{ - class Program - { - static void Main(string[] args) - { - byte byt = 5; // 1 byte - sbyte sb = 5; // 1 byte - - short sh = 5; // 2 byte - ushort us = 5; // 2 byte - - Int16 i16 = 5; // 2 byte - int i = 5; // 4 byte - Int32 int32 = 5; // 4 byte - Int64 int64 = 5; // 8 byte - - uint ui = 5; // 4 byte - - long l = 5; // 8 byte - ulong ul = 5; // 8 byte - eksi değer alamayan, artı değer alabilen. - - // reel numbers - float f = 5.2f; // 4 byte - double d = 5; // 8 byte - decimal dc = 5m; // 16 byte - - char ch = 'b'; // 2 byte - string str = "Burak"; // sınırsız - - bool b1 = true; // 1 byte - bool b2 = false; // 1 byte - - DateTime dt = DateTime.Now; - - object o1 = "x"; - object o2 = 'b'; - object o3 = 3; - object o4 = 3.5; - - // string expressions - string str1 = ""; // or "= null;" - string str2 = string.Empty; - str2 = "Burak Avar"; - string name = "Burak"; - string surname = "Avar"; - string fullName = name + " " + surname; - - - // integer definitions - int i1 = 3; - int i2 = 5; - int iMultiplication = i1 * i2; - - - // boolean - bool bl1 = 10<2; // false - bool bl2 = 10>2; // true - - // variable transformations - string s20 = "20"; - int i20 = 20; - string newValue = s20 + i20.ToString(); // output 2020 - - int i21 = i20 + Convert.ToInt32(s20); // output 40 - - int i22 = i20 + int.Parse(s20); - - // datetime - string dateTime = DateTime.Now.ToString("dd.mm.yyyy"); - Console.WriteLine(dateTime); - string dateTime2 = DateTime.Now.ToString("dd/mm/yyyy"); - Console.WriteLine(dateTime2); - - // hour - string hour = DateTime.Now.ToString("HH:mm"); - Console.WriteLine(hour); - - // age calc. - string dTime = DateTime.Now.ToString("yyyy"); - int dd = int.Parse(dTime); - // Console.WriteLine("Doğum Yılınız :"); - int bDay = int.Parse(Console.ReadLine()); - int age = dd - bDay; - // Console.WriteLine("Your age :" + " " + age); - - - - - - - - - - - - Console.WriteLine(); - - Console.ReadKey(); - } - } -} diff --git a/Variables/Variables.csproj b/Variables/Variables.csproj deleted file mode 100644 index 2082704..0000000 --- a/Variables/Variables.csproj +++ /dev/null @@ -1,8 +0,0 @@ - - - - Exe - net5.0 - - - diff --git a/Variables/bin/Debug/net5.0/Variables.deps.json b/Variables/bin/Debug/net5.0/Variables.deps.json deleted file mode 100644 index 6abd51e..0000000 --- a/Variables/bin/Debug/net5.0/Variables.deps.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v5.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v5.0": { - "Variables/1.0.0": { - "runtime": { - "Variables.dll": {} - } - } - } - }, - "libraries": { - "Variables/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/Variables/bin/Debug/net5.0/Variables.dll b/Variables/bin/Debug/net5.0/Variables.dll deleted file mode 100644 index 3295f8e..0000000 Binary files a/Variables/bin/Debug/net5.0/Variables.dll and /dev/null differ diff --git a/Variables/bin/Debug/net5.0/Variables.exe b/Variables/bin/Debug/net5.0/Variables.exe deleted file mode 100644 index 0974839..0000000 Binary files a/Variables/bin/Debug/net5.0/Variables.exe and /dev/null differ diff --git a/Variables/bin/Debug/net5.0/Variables.pdb b/Variables/bin/Debug/net5.0/Variables.pdb deleted file mode 100644 index 2b372d1..0000000 Binary files a/Variables/bin/Debug/net5.0/Variables.pdb and /dev/null differ diff --git a/Variables/bin/Debug/net5.0/Variables.runtimeconfig.dev.json b/Variables/bin/Debug/net5.0/Variables.runtimeconfig.dev.json deleted file mode 100644 index f6ba0bd..0000000 --- a/Variables/bin/Debug/net5.0/Variables.runtimeconfig.dev.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\Tednokent\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Tednokent\\.nuget\\packages" - ] - } -} \ No newline at end of file diff --git a/Variables/bin/Debug/net5.0/Variables.runtimeconfig.json b/Variables/bin/Debug/net5.0/Variables.runtimeconfig.json deleted file mode 100644 index a8e7e82..0000000 --- a/Variables/bin/Debug/net5.0/Variables.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net5.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "5.0.0" - } - } -} \ No newline at end of file diff --git a/Variables/bin/Debug/net5.0/ref/Variables.dll b/Variables/bin/Debug/net5.0/ref/Variables.dll deleted file mode 100644 index 81c4201..0000000 Binary files a/Variables/bin/Debug/net5.0/ref/Variables.dll and /dev/null differ diff --git a/Variables/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Variables/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs deleted file mode 100644 index 2f7e5ec..0000000 --- a/Variables/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Variables/obj/Debug/net5.0/Variables.AssemblyInfo.cs b/Variables/obj/Debug/net5.0/Variables.AssemblyInfo.cs deleted file mode 100644 index cb5571a..0000000 --- a/Variables/obj/Debug/net5.0/Variables.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Variables")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Variables")] -[assembly: System.Reflection.AssemblyTitleAttribute("Variables")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// MSBuild WriteCodeFragment sınıfı tarafından oluşturuldu. - diff --git a/Variables/obj/Debug/net5.0/Variables.AssemblyInfoInputs.cache b/Variables/obj/Debug/net5.0/Variables.AssemblyInfoInputs.cache deleted file mode 100644 index 0021352..0000000 --- a/Variables/obj/Debug/net5.0/Variables.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -54ad00f584475d3619a5f2994ddc2d97fd7d80a5 diff --git a/Variables/obj/Debug/net5.0/Variables.GeneratedMSBuildEditorConfig.editorconfig b/Variables/obj/Debug/net5.0/Variables.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 7e82b44..0000000 --- a/Variables/obj/Debug/net5.0/Variables.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net5.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.PublishSingleFile = -build_property.IncludeAllContentForSelfExtract = -build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows -build_property.RootNamespace = Variables -build_property.ProjectDir = d:\Users\Tednokent\CSharp\pDev\Variables\ diff --git a/Variables/obj/Debug/net5.0/Variables.assets.cache b/Variables/obj/Debug/net5.0/Variables.assets.cache deleted file mode 100644 index a697fc4..0000000 Binary files a/Variables/obj/Debug/net5.0/Variables.assets.cache and /dev/null differ diff --git a/Variables/obj/Debug/net5.0/Variables.csproj.AssemblyReference.cache b/Variables/obj/Debug/net5.0/Variables.csproj.AssemblyReference.cache deleted file mode 100644 index f5e894a..0000000 Binary files a/Variables/obj/Debug/net5.0/Variables.csproj.AssemblyReference.cache and /dev/null differ diff --git a/Variables/obj/Debug/net5.0/Variables.csproj.CoreCompileInputs.cache b/Variables/obj/Debug/net5.0/Variables.csproj.CoreCompileInputs.cache deleted file mode 100644 index 3e58b94..0000000 --- a/Variables/obj/Debug/net5.0/Variables.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -a864c869c2668f12761b4994cd641ea342971abe diff --git a/Variables/obj/Debug/net5.0/Variables.csproj.FileListAbsolute.txt b/Variables/obj/Debug/net5.0/Variables.csproj.FileListAbsolute.txt deleted file mode 100644 index e84f4c4..0000000 --- a/Variables/obj/Debug/net5.0/Variables.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,16 +0,0 @@ -D:\Users\Tednokent\CSharp\pDev\Variables\bin\Debug\net5.0\Variables.exe -D:\Users\Tednokent\CSharp\pDev\Variables\bin\Debug\net5.0\Variables.deps.json -D:\Users\Tednokent\CSharp\pDev\Variables\bin\Debug\net5.0\Variables.runtimeconfig.json -D:\Users\Tednokent\CSharp\pDev\Variables\bin\Debug\net5.0\Variables.runtimeconfig.dev.json -D:\Users\Tednokent\CSharp\pDev\Variables\bin\Debug\net5.0\Variables.dll -D:\Users\Tednokent\CSharp\pDev\Variables\bin\Debug\net5.0\ref\Variables.dll -D:\Users\Tednokent\CSharp\pDev\Variables\bin\Debug\net5.0\Variables.pdb -D:\Users\Tednokent\CSharp\pDev\Variables\obj\Debug\net5.0\Variables.csproj.AssemblyReference.cache -D:\Users\Tednokent\CSharp\pDev\Variables\obj\Debug\net5.0\Variables.GeneratedMSBuildEditorConfig.editorconfig -D:\Users\Tednokent\CSharp\pDev\Variables\obj\Debug\net5.0\Variables.AssemblyInfoInputs.cache -D:\Users\Tednokent\CSharp\pDev\Variables\obj\Debug\net5.0\Variables.AssemblyInfo.cs -D:\Users\Tednokent\CSharp\pDev\Variables\obj\Debug\net5.0\Variables.csproj.CoreCompileInputs.cache -D:\Users\Tednokent\CSharp\pDev\Variables\obj\Debug\net5.0\Variables.dll -D:\Users\Tednokent\CSharp\pDev\Variables\obj\Debug\net5.0\ref\Variables.dll -D:\Users\Tednokent\CSharp\pDev\Variables\obj\Debug\net5.0\Variables.pdb -D:\Users\Tednokent\CSharp\pDev\Variables\obj\Debug\net5.0\Variables.genruntimeconfig.cache diff --git a/Variables/obj/Debug/net5.0/Variables.dll b/Variables/obj/Debug/net5.0/Variables.dll deleted file mode 100644 index 3295f8e..0000000 Binary files a/Variables/obj/Debug/net5.0/Variables.dll and /dev/null differ diff --git a/Variables/obj/Debug/net5.0/Variables.genruntimeconfig.cache b/Variables/obj/Debug/net5.0/Variables.genruntimeconfig.cache deleted file mode 100644 index 6a57d7d..0000000 --- a/Variables/obj/Debug/net5.0/Variables.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -932abdb42e82907e4b56ce5276a7d68656060f5b diff --git a/Variables/obj/Debug/net5.0/Variables.pdb b/Variables/obj/Debug/net5.0/Variables.pdb deleted file mode 100644 index 2b372d1..0000000 Binary files a/Variables/obj/Debug/net5.0/Variables.pdb and /dev/null differ diff --git a/Variables/obj/Debug/net5.0/apphost.exe b/Variables/obj/Debug/net5.0/apphost.exe deleted file mode 100644 index 0974839..0000000 Binary files a/Variables/obj/Debug/net5.0/apphost.exe and /dev/null differ diff --git a/Variables/obj/Debug/net5.0/ref/Variables.dll b/Variables/obj/Debug/net5.0/ref/Variables.dll deleted file mode 100644 index 81c4201..0000000 Binary files a/Variables/obj/Debug/net5.0/ref/Variables.dll and /dev/null differ diff --git a/Variables/obj/Variables.csproj.nuget.dgspec.json b/Variables/obj/Variables.csproj.nuget.dgspec.json deleted file mode 100644 index 360d456..0000000 --- a/Variables/obj/Variables.csproj.nuget.dgspec.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\Variables\\Variables.csproj": {} - }, - "projects": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\Variables\\Variables.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Users\\Tednokent\\CSharp\\pDev\\Variables\\Variables.csproj", - "projectName": "Variables", - "projectPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Variables\\Variables.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Variables\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/Variables/obj/Variables.csproj.nuget.g.props b/Variables/obj/Variables.csproj.nuget.g.props deleted file mode 100644 index d993cd8..0000000 --- a/Variables/obj/Variables.csproj.nuget.g.props +++ /dev/null @@ -1,18 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Tednokent\.nuget\packages\ - PackageReference - 5.11.1 - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/Variables/obj/Variables.csproj.nuget.g.targets b/Variables/obj/Variables.csproj.nuget.g.targets deleted file mode 100644 index 53cfaa1..0000000 --- a/Variables/obj/Variables.csproj.nuget.g.targets +++ /dev/null @@ -1,6 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/Variables/obj/project.assets.json b/Variables/obj/project.assets.json deleted file mode 100644 index cabef6d..0000000 --- a/Variables/obj/project.assets.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "version": 3, - "targets": { - "net5.0": {} - }, - "libraries": {}, - "projectFileDependencyGroups": { - "net5.0": [] - }, - "packageFolders": { - "C:\\Users\\Tednokent\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Users\\Tednokent\\cSharp\\pDev\\Variables\\Variables.csproj", - "projectName": "Variables", - "projectPath": "D:\\Users\\Tednokent\\cSharp\\pDev\\Variables\\Variables.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\Users\\Tednokent\\cSharp\\pDev\\Variables\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/Variables/obj/project.nuget.cache b/Variables/obj/project.nuget.cache deleted file mode 100644 index 467d485..0000000 --- a/Variables/obj/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "8r3gbwCi713Z1069+3w/PNGcHinXQa8sw0vjXBAy5kwnf3vREO439VOG4AEFff+ZBnbfIy2sC4mNm/ta2yraGQ==", - "success": true, - "projectFilePath": "D:\\Users\\Tednokent\\CSharp\\pDev\\Variables\\Variables.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file diff --git a/if-else-if/.vscode/launch.json b/if-else-if/.vscode/launch.json deleted file mode 100644 index eea6472..0000000 --- a/if-else-if/.vscode/launch.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": ".NET Core Launch (console)", - "type": "coreclr", - "request": "launch", - "preLaunchTask": "build", - "program": "${workspaceFolder}/bin/Debug/net5.0/if-else-if.dll", - "args": [], - "cwd": "${workspaceFolder}", - "console": "integratedTerminal", - "stopAtEntry": false - }, - { - "name": ".NET Core Attach", - "type": "coreclr", - "request": "attach" - } - ] -} \ No newline at end of file diff --git a/if-else-if/.vscode/tasks.json b/if-else-if/.vscode/tasks.json deleted file mode 100644 index 8f6c0f1..0000000 --- a/if-else-if/.vscode/tasks.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/if-else-if.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/if-else-if.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "${workspaceFolder}/if-else-if.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - } - ] -} \ No newline at end of file diff --git a/if-else-if/Program.cs b/if-else-if/Program.cs deleted file mode 100644 index facdae6..0000000 --- a/if-else-if/Program.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System; - -namespace if_else_if -{ - class Program - { - static void Main(string[] args) - { - int time = DateTime.Now.Hour; - - if (time >= 5 && time <= 12) - Console.WriteLine("Good Morning"); - else if (time > 12 && time <= 18) - Console.WriteLine("Good Afternoon"); - else if (time > 18 && time <= 22) - Console.WriteLine("Good Evening"); - else if (time > 22 && time <= 4) - Console.WriteLine("Good Night"); - - string result = time <= 18 ? "Have a nice day!" : "Good Evening!"; - result = time >= 5 && time <= 12 ? "Good Morning" : time > 12 && time <= 18 ? "Good Afternoon" : - time > 18 && time <= 22 ? "Good Evening" : time > 22 && time <= 4 ? "Good Night" : " "; - Console.WriteLine(result); - } - } -} diff --git a/if-else-if/bin/Debug/net5.0/if-else-if.deps.json b/if-else-if/bin/Debug/net5.0/if-else-if.deps.json deleted file mode 100644 index 0a54d3e..0000000 --- a/if-else-if/bin/Debug/net5.0/if-else-if.deps.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v5.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v5.0": { - "if-else-if/1.0.0": { - "runtime": { - "if-else-if.dll": {} - } - } - } - }, - "libraries": { - "if-else-if/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/if-else-if/bin/Debug/net5.0/if-else-if.dll b/if-else-if/bin/Debug/net5.0/if-else-if.dll deleted file mode 100644 index 557de7d..0000000 Binary files a/if-else-if/bin/Debug/net5.0/if-else-if.dll and /dev/null differ diff --git a/if-else-if/bin/Debug/net5.0/if-else-if.exe b/if-else-if/bin/Debug/net5.0/if-else-if.exe deleted file mode 100644 index 83d1c98..0000000 Binary files a/if-else-if/bin/Debug/net5.0/if-else-if.exe and /dev/null differ diff --git a/if-else-if/bin/Debug/net5.0/if-else-if.pdb b/if-else-if/bin/Debug/net5.0/if-else-if.pdb deleted file mode 100644 index 000f9b6..0000000 Binary files a/if-else-if/bin/Debug/net5.0/if-else-if.pdb and /dev/null differ diff --git a/if-else-if/bin/Debug/net5.0/if-else-if.runtimeconfig.dev.json b/if-else-if/bin/Debug/net5.0/if-else-if.runtimeconfig.dev.json deleted file mode 100644 index f6ba0bd..0000000 --- a/if-else-if/bin/Debug/net5.0/if-else-if.runtimeconfig.dev.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\Tednokent\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Tednokent\\.nuget\\packages" - ] - } -} \ No newline at end of file diff --git a/if-else-if/bin/Debug/net5.0/if-else-if.runtimeconfig.json b/if-else-if/bin/Debug/net5.0/if-else-if.runtimeconfig.json deleted file mode 100644 index a8e7e82..0000000 --- a/if-else-if/bin/Debug/net5.0/if-else-if.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net5.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "5.0.0" - } - } -} \ No newline at end of file diff --git a/if-else-if/bin/Debug/net5.0/ref/if-else-if.dll b/if-else-if/bin/Debug/net5.0/ref/if-else-if.dll deleted file mode 100644 index 8269226..0000000 Binary files a/if-else-if/bin/Debug/net5.0/ref/if-else-if.dll and /dev/null differ diff --git a/if-else-if/if-else-if.csproj b/if-else-if/if-else-if.csproj deleted file mode 100644 index c6d58ec..0000000 --- a/if-else-if/if-else-if.csproj +++ /dev/null @@ -1,9 +0,0 @@ - - - - Exe - net5.0 - if_else_if - - - diff --git a/if-else-if/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/if-else-if/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs deleted file mode 100644 index 2f7e5ec..0000000 --- a/if-else-if/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/if-else-if/obj/Debug/net5.0/apphost.exe b/if-else-if/obj/Debug/net5.0/apphost.exe deleted file mode 100644 index 83d1c98..0000000 Binary files a/if-else-if/obj/Debug/net5.0/apphost.exe and /dev/null differ diff --git a/if-else-if/obj/Debug/net5.0/if-else-if.AssemblyInfo.cs b/if-else-if/obj/Debug/net5.0/if-else-if.AssemblyInfo.cs deleted file mode 100644 index de7f692..0000000 --- a/if-else-if/obj/Debug/net5.0/if-else-if.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Bu kod araç tarafından oluşturuldu. -// Çalışma Zamanı Sürümü:4.0.30319.42000 -// -// Bu dosyada yapılacak değişiklikler yanlış davranışa neden olabilir ve -// kod yeniden oluşturulursa kaybolur. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("if-else-if")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("if-else-if")] -[assembly: System.Reflection.AssemblyTitleAttribute("if-else-if")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// MSBuild WriteCodeFragment sınıfı tarafından oluşturuldu. - diff --git a/if-else-if/obj/Debug/net5.0/if-else-if.AssemblyInfoInputs.cache b/if-else-if/obj/Debug/net5.0/if-else-if.AssemblyInfoInputs.cache deleted file mode 100644 index 8e2ceef..0000000 --- a/if-else-if/obj/Debug/net5.0/if-else-if.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -68c663df2a790564d0895cddae0b3d3e566a8422 diff --git a/if-else-if/obj/Debug/net5.0/if-else-if.GeneratedMSBuildEditorConfig.editorconfig b/if-else-if/obj/Debug/net5.0/if-else-if.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 2c7342c..0000000 --- a/if-else-if/obj/Debug/net5.0/if-else-if.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net5.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.PublishSingleFile = -build_property.IncludeAllContentForSelfExtract = -build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows -build_property.RootNamespace = if_else_if -build_property.ProjectDir = D:\Users\Tednokent\CSharp\pDev\if-else-if\ diff --git a/if-else-if/obj/Debug/net5.0/if-else-if.assets.cache b/if-else-if/obj/Debug/net5.0/if-else-if.assets.cache deleted file mode 100644 index a3c74c2..0000000 Binary files a/if-else-if/obj/Debug/net5.0/if-else-if.assets.cache and /dev/null differ diff --git a/if-else-if/obj/Debug/net5.0/if-else-if.csproj.AssemblyReference.cache b/if-else-if/obj/Debug/net5.0/if-else-if.csproj.AssemblyReference.cache deleted file mode 100644 index d29614d..0000000 Binary files a/if-else-if/obj/Debug/net5.0/if-else-if.csproj.AssemblyReference.cache and /dev/null differ diff --git a/if-else-if/obj/Debug/net5.0/if-else-if.csproj.CoreCompileInputs.cache b/if-else-if/obj/Debug/net5.0/if-else-if.csproj.CoreCompileInputs.cache deleted file mode 100644 index 21fe279..0000000 --- a/if-else-if/obj/Debug/net5.0/if-else-if.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -7b3635b59a2fd8c90f3fe3d1b17ba2772004b3fb diff --git a/if-else-if/obj/Debug/net5.0/if-else-if.csproj.FileListAbsolute.txt b/if-else-if/obj/Debug/net5.0/if-else-if.csproj.FileListAbsolute.txt deleted file mode 100644 index 0c3036e..0000000 --- a/if-else-if/obj/Debug/net5.0/if-else-if.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,16 +0,0 @@ -D:\Users\Tednokent\CSharp\pDev\if-else-if\bin\Debug\net5.0\if-else-if.exe -D:\Users\Tednokent\CSharp\pDev\if-else-if\bin\Debug\net5.0\if-else-if.deps.json -D:\Users\Tednokent\CSharp\pDev\if-else-if\bin\Debug\net5.0\if-else-if.runtimeconfig.json -D:\Users\Tednokent\CSharp\pDev\if-else-if\bin\Debug\net5.0\if-else-if.runtimeconfig.dev.json -D:\Users\Tednokent\CSharp\pDev\if-else-if\bin\Debug\net5.0\if-else-if.dll -D:\Users\Tednokent\CSharp\pDev\if-else-if\bin\Debug\net5.0\ref\if-else-if.dll -D:\Users\Tednokent\CSharp\pDev\if-else-if\bin\Debug\net5.0\if-else-if.pdb -D:\Users\Tednokent\CSharp\pDev\if-else-if\obj\Debug\net5.0\if-else-if.csproj.AssemblyReference.cache -D:\Users\Tednokent\CSharp\pDev\if-else-if\obj\Debug\net5.0\if-else-if.GeneratedMSBuildEditorConfig.editorconfig -D:\Users\Tednokent\CSharp\pDev\if-else-if\obj\Debug\net5.0\if-else-if.AssemblyInfoInputs.cache -D:\Users\Tednokent\CSharp\pDev\if-else-if\obj\Debug\net5.0\if-else-if.AssemblyInfo.cs -D:\Users\Tednokent\CSharp\pDev\if-else-if\obj\Debug\net5.0\if-else-if.csproj.CoreCompileInputs.cache -D:\Users\Tednokent\CSharp\pDev\if-else-if\obj\Debug\net5.0\if-else-if.dll -D:\Users\Tednokent\CSharp\pDev\if-else-if\obj\Debug\net5.0\ref\if-else-if.dll -D:\Users\Tednokent\CSharp\pDev\if-else-if\obj\Debug\net5.0\if-else-if.pdb -D:\Users\Tednokent\CSharp\pDev\if-else-if\obj\Debug\net5.0\if-else-if.genruntimeconfig.cache diff --git a/if-else-if/obj/Debug/net5.0/if-else-if.dll b/if-else-if/obj/Debug/net5.0/if-else-if.dll deleted file mode 100644 index 557de7d..0000000 Binary files a/if-else-if/obj/Debug/net5.0/if-else-if.dll and /dev/null differ diff --git a/if-else-if/obj/Debug/net5.0/if-else-if.genruntimeconfig.cache b/if-else-if/obj/Debug/net5.0/if-else-if.genruntimeconfig.cache deleted file mode 100644 index 443a371..0000000 --- a/if-else-if/obj/Debug/net5.0/if-else-if.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -cfaf7a88d13c676dfebbad087baf93178402e29f diff --git a/if-else-if/obj/Debug/net5.0/if-else-if.pdb b/if-else-if/obj/Debug/net5.0/if-else-if.pdb deleted file mode 100644 index 000f9b6..0000000 Binary files a/if-else-if/obj/Debug/net5.0/if-else-if.pdb and /dev/null differ diff --git a/if-else-if/obj/Debug/net5.0/ref/if-else-if.dll b/if-else-if/obj/Debug/net5.0/ref/if-else-if.dll deleted file mode 100644 index 8269226..0000000 Binary files a/if-else-if/obj/Debug/net5.0/ref/if-else-if.dll and /dev/null differ diff --git a/if-else-if/obj/if-else-if.csproj.nuget.dgspec.json b/if-else-if/obj/if-else-if.csproj.nuget.dgspec.json deleted file mode 100644 index be33ae5..0000000 --- a/if-else-if/obj/if-else-if.csproj.nuget.dgspec.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\if-else-if\\if-else-if.csproj": {} - }, - "projects": { - "D:\\Users\\Tednokent\\CSharp\\pDev\\if-else-if\\if-else-if.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Users\\Tednokent\\CSharp\\pDev\\if-else-if\\if-else-if.csproj", - "projectName": "if-else-if", - "projectPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\if-else-if\\if-else-if.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\Users\\Tednokent\\CSharp\\pDev\\if-else-if\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/if-else-if/obj/if-else-if.csproj.nuget.g.props b/if-else-if/obj/if-else-if.csproj.nuget.g.props deleted file mode 100644 index d993cd8..0000000 --- a/if-else-if/obj/if-else-if.csproj.nuget.g.props +++ /dev/null @@ -1,18 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Tednokent\.nuget\packages\ - PackageReference - 5.11.1 - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/if-else-if/obj/if-else-if.csproj.nuget.g.targets b/if-else-if/obj/if-else-if.csproj.nuget.g.targets deleted file mode 100644 index 53cfaa1..0000000 --- a/if-else-if/obj/if-else-if.csproj.nuget.g.targets +++ /dev/null @@ -1,6 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/if-else-if/obj/project.assets.json b/if-else-if/obj/project.assets.json deleted file mode 100644 index abbe928..0000000 --- a/if-else-if/obj/project.assets.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "version": 3, - "targets": { - "net5.0": {} - }, - "libraries": {}, - "projectFileDependencyGroups": { - "net5.0": [] - }, - "packageFolders": { - "C:\\Users\\Tednokent\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\users\\tednokent\\csharp\\pDev\\if-else-if\\if-else-if.csproj", - "projectName": "if-else-if", - "projectPath": "D:\\users\\tednokent\\csharp\\pDev\\if-else-if\\if-else-if.csproj", - "packagesPath": "C:\\Users\\Tednokent\\.nuget\\packages\\", - "outputPath": "D:\\users\\tednokent\\csharp\\pDev\\if-else-if\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\Tednokent\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/if-else-if/obj/project.nuget.cache b/if-else-if/obj/project.nuget.cache deleted file mode 100644 index ce13b29..0000000 --- a/if-else-if/obj/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "3XE/SXdwCN+NwqCW/muk92dSEO6v3o3zgVdwmpR1j3SdKLrFv+GBbBi8AZpQ9Srz6GZbeFDn1fMppDqJMm5dOQ==", - "success": true, - "projectFilePath": "D:\\Users\\Tednokent\\CSharp\\pDev\\if-else-if\\if-else-if.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file