├── Listing3-23SHA2 ├── .vs │ └── Listing3-23SHA2 │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing3-23SHA2.csproj.CoreCompileInputs.cache │ │ ├── Listing3-23SHA2.exe │ │ ├── Listing3-23SHA2.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing3-23SHA2.exe │ │ ├── Listing3-23SHA2.pdb │ │ └── Listing3-23SHA2.exe.config └── App.config ├── Listing3-32Hashing ├── .vs │ └── Listing3-32Hashing │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing3-32Hashing.csproj.CoreCompileInputs.cache │ │ ├── Listing3-32Hashing.exe │ │ ├── Listing3-32Hashing.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing3-32Hashing.exe │ │ ├── Listing3-32Hashing.pdb │ │ └── Listing3-32Hashing.exe.config └── App.config ├── Listing1.12RunATask ├── .vs │ └── Listing1.12RunATask │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing1.12RunATask.csproj.CoreCompileInputs.cache │ │ ├── Listing1.12RunATask.exe │ │ ├── Listing1.12RunATask.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing1.12RunATask.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing1.12RunATask.exe │ │ ├── Listing1.12RunATask.pdb │ │ └── Listing1.12RunATask.exe.config └── App.config ├── Listing 2-20 Using base ├── .vs │ └── Listing 2-20 Using base │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-20 Using base.csproj.CoreCompileInputs.cache │ │ ├── Listing 2-20 Using base.exe │ │ ├── Listing 2-20 Using base.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 2-20 Using base.exe │ │ └── Listing 2-20 Using base.pdb └── App.config ├── Listing 2-44 Using yeld ├── .vs │ └── Listing 2-44 Using yeld │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-44 Using yeld.csproj.CoreCompileInputs.cache │ │ ├── Listing 2-44 Using yeld.exe │ │ ├── Listing 2-44 Using yeld.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing 2-44 Using yeld.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing 2-44 Using yeld.exe │ │ └── Listing 2-44 Using yeld.pdb └── App.config ├── Listing1.11CreateTask ├── .vs │ └── Listing1.11CreateTask │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing1.11CreateTask.csproj.CoreCompileInputs.cache │ │ ├── Listing1.11CreateTask.exe │ │ ├── Listing1.11CreateTask.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing1.11CreateTask.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing1.11CreateTask.exe │ │ └── Listing1.11CreateTask.pdb └── App.config ├── Listing1.14TaskWaitall ├── .vs │ └── Listing1.14TaskWaitall │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing1.14TaskWaitall.csproj.CoreCompileInputs.cache │ │ ├── Listing1.14TaskWaitall.exe │ │ ├── Listing1.14TaskWaitall.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing1.14TaskWaitall.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing1.14TaskWaitall.exe │ │ └── Listing1.14TaskWaitall.pdb └── App.config ├── Listing1.3ParallelFor ├── .vs │ └── Listing1.3ParallelFor │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing1.3ParallelFor.csproj.CoreCompileInputs.cache │ │ ├── Listing1.3ParallelFor.exe │ │ ├── Listing1.3ParallelFor.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing1.3ParallelFor.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing1.3ParallelFor.exe │ │ └── Listing1.3ParallelFor.pdb └── App.config ├── Listing1.5ParallelLINQ ├── .vs │ └── Listing1.5ParallelLINQ │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing1.5ParallelLINQ.csproj.CoreCompileInputs.cache │ │ ├── Listing1.5ParallelLINQ.exe │ │ ├── Listing1.5ParallelLINQ.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing1.5ParallelLINQ.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing1.5ParallelLINQ.exe │ │ └── Listing1.5ParallelLINQ.pdb └── App.config ├── Listing3-21 Checksums ├── .vs │ └── Listing3-21 Checksums │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing3-21 Checksums.csproj.CoreCompileInputs.cache │ │ ├── Listing3-21 Checksums.exe │ │ ├── Listing3-21 Checksums.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing3-21 Checksums.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing3-21 Checksums.exe │ │ └── Listing3-21 Checksums.pdb └── App.config ├── Listing 2.7 Constructors ├── .vs │ └── Listing 2.7 Constructors │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2.7 Constructors.csproj.CoreCompileInputs.cache │ │ ├── Listing 2.7 Constructors.exe │ │ ├── Listing 2.7 Constructors.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing 2.7 Constructors.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing 2.7 Constructors.exe │ │ └── Listing 2.7 Constructors.pdb └── App.config ├── Listing 3-1 Creating JSON ├── .vs │ └── Listing 3-1 Creating JSON │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 3-1 Creating JSON.csproj.CopyComplete │ │ ├── Listing 3-1 Creating JSON.csproj.CoreCompileInputs.cache │ │ ├── Listing 3-1 Creating JSON.exe │ │ ├── Listing 3-1 Creating JSON.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing 3-1 Creating JSON.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Newtonsoft.Json.dll │ │ ├── Listing 3-1 Creating JSON.exe │ │ └── Listing 3-1 Creating JSON.pdb ├── packages.config ├── packages │ └── Newtonsoft.Json.12.0.2 │ │ ├── .signature.p7s │ │ ├── Newtonsoft.Json.12.0.2.nupkg │ │ └── lib │ │ ├── net20 │ │ └── Newtonsoft.Json.dll │ │ ├── net35 │ │ └── Newtonsoft.Json.dll │ │ ├── net40 │ │ └── Newtonsoft.Json.dll │ │ └── net45 │ │ └── Newtonsoft.Json.dll └── App.config ├── Listing 3-2 Creating XML ├── .vs │ └── Listing 3-2 Creating XML │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 3-2 Creating XML.csproj.CoreCompileInputs.cache │ │ ├── Listing 3-2 Creating XML.exe │ │ ├── Listing 3-2 Creating XML.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing 3-2 Creating XML.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing 3-2 Creating XML.exe │ │ └── Listing 3-2 Creating XML.pdb └── App.config ├── Listing1.1Parallel.Invoke ├── .vs │ └── Listing1.1Parallel.Invoke │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing1.1Parallel.Invoke.csproj.CoreCompileInputs.cache │ │ ├── Listing1.1Parallel.Invoke.exe │ │ ├── Listing1.1Parallel.Invoke.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing1.1Parallel.Invoke.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing1.1Parallel.Invoke.exe │ │ └── Listing1.1Parallel.Invoke.pdb └── App.config ├── Listing3-12Using Convert ├── .vs │ └── Listing3-12Using Convert │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing3-12Using Convert.csproj.CoreCompileInputs.cache │ │ ├── Listing3-12Using Convert.exe │ │ ├── Listing3-12Using Convert.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing3-12Using Convert.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing3-12Using Convert.exe │ │ └── Listing3-12Using Convert.pdb └── App.config ├── Listing3-14AES encryption ├── .vs │ └── Listing3-14AES encryption │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing3-14AES encryption.csproj.CoreCompileInputs.cache │ │ ├── Listing3-14AES encryption.exe │ │ ├── Listing3-14AES encryption.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing3-14AES encryption.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing3-14AES encryption.exe │ │ └── Listing3-14AES encryption.pdb └── App.config ├── Listing3-15AES decryption ├── .vs │ └── Listing3-15AES decryption │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing3-15AES decryption.csproj.CoreCompileInputs.cache │ │ ├── Listing3-15AES decryption.exe │ │ ├── Listing3-15AES decryption.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing3-15AES decryption.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing3-15AES decryption.exe │ │ └── Listing3-15AES decryption.pdb └── App.config ├── Listing3-16RSA encryption ├── .vs │ └── Listing3-16RSA encryption │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing3-16RSA encryption.csproj.CoreCompileInputs.cache │ │ ├── Listing3-16RSA encryption.exe │ │ ├── Listing3-16RSA encryption.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing3-16RSA encryption.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing3-16RSA encryption.exe │ │ └── Listing3-16RSA encryption.pdb └── App.config ├── Listing 2-23 Type conversion ├── .vs │ └── Listing 2-23 Type conversion │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-23 Type conversion.csproj.CoreCompileInputs.cache │ │ ├── Listing 2-23 Type conversion.exe │ │ ├── Listing 2-23 Type conversion.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing 2-23 Type conversion.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing 2-23 Type conversion.exe │ │ └── Listing 2-23 Type conversion.pdb └── App.config ├── Listing 2-31 Protected class ├── .vs │ └── Listing 2-31 Protected class │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-31 Protected class.csproj.CoreCompileInputs.cache │ │ └── DesignTimeResolveAssemblyReferencesInput.cache └── App.config ├── Listing 2-42 Using foreach ├── .vs │ └── Listing 2-42 Using foreach │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-42 Using foreach.csproj.CoreCompileInputs.cache │ │ ├── Listing 2-42 Using foreach.exe │ │ ├── Listing 2-42 Using foreach.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing 2-42 Using foreach.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing 2-42 Using foreach.exe │ │ └── Listing 2-42 Using foreach.pdb └── App.config ├── Listing 2.12 Simple Method ├── .vs │ └── Listing 2.12 Simple Method │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2.12 Simple Method.csproj.CoreCompileInputs.cache │ │ ├── Listing 2.12 Simple Method.exe │ │ ├── Listing 2.12 Simple Method.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing 2.12 Simple Method.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing 2.12 Simple Method.exe │ │ └── Listing 2.12 Simple Method.pdb └── App.config ├── Listing 3-3 Validating JSON ├── .vs │ └── Listing 3-3 Validating JSON │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 3-3 Validating JSON.csproj.CopyComplete │ │ ├── Listing 3-3 Validating JSON.csproj.CoreCompileInputs.cache │ │ ├── Listing 3-3 Validating JSON.exe │ │ ├── Listing 3-3 Validating JSON.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing 3-3 Validating JSON.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Newtonsoft.Json.dll │ │ ├── Listing 3-3 Validating JSON.exe │ │ └── Listing 3-3 Validating JSON.pdb ├── packages.config ├── packages │ └── Newtonsoft.Json.12.0.2 │ │ ├── .signature.p7s │ │ ├── Newtonsoft.Json.12.0.2.nupkg │ │ └── lib │ │ ├── net20 │ │ └── Newtonsoft.Json.dll │ │ ├── net35 │ │ └── Newtonsoft.Json.dll │ │ ├── net40 │ │ └── Newtonsoft.Json.dll │ │ └── net45 │ │ └── Newtonsoft.Json.dll └── App.config ├── Listing.2.4 Creating an enum ├── .vs │ └── Listing.2.4 Creating an enum │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing.2.4 Creating an enum.csproj.CoreCompileInputs.cache │ │ ├── Listing.2.4 Creating an enum.exe │ │ ├── Listing.2.4 Creating an enum.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing.2.4 Creating an enum.exe │ │ └── Listing.2.4 Creating an enum.pdb └── App.config ├── Listing1.15ContinuationTasks ├── .vs │ └── Listing1.15ContinuationTasks │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing1.15ContinuationTasks.csproj.CoreCompileInputs.cache │ │ ├── Listing1.15ContinuationTasks.exe │ │ ├── Listing1.15ContinuationTasks.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing1.15ContinuationTasks.exe │ │ └── Listing1.15ContinuationTasks.pdb └── App.config ├── Listing1.2Parallel.ForEach ├── .vs │ └── Listing1.2Parallel.ForEach │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing1.2Parallel.ForEach.csproj.CoreCompileInputs.cache │ │ ├── Listing1.2Parallel.ForEach.exe │ │ ├── Listing1.2Parallel.ForEach.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing1.2Parallel.ForEach.exe │ │ └── Listing1.2Parallel.ForEach.pdb └── App.config ├── Listing3-11 Using TryParse ├── .vs │ └── Listing3-11 Using TryParse │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing3-11 Using TryParse.csproj.CoreCompileInputs.cache │ │ ├── Listing3-11 Using TryParse.exe │ │ ├── Listing3-11 Using TryParse.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing3-11 Using TryParse.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing3-11 Using TryParse.exe │ │ └── Listing3-11 Using TryParse.pdb └── App.config ├── Listing3-5 Copy construtor ├── .vs │ └── Listing3-5 Copy construtor │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing3-5 Copy construtor.csproj.CoreCompileInputs.cache │ │ ├── Listing3-5 Copy construtor.exe │ │ ├── Listing3-5 Copy construtor.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Listing3-5 Copy construtor.csprojAssemblyReference.cache ├── bin │ └── Debug │ │ ├── Listing3-5 Copy construtor.exe │ │ └── Listing3-5 Copy construtor.pdb └── App.config ├── Listing 2-19 Method overriding ├── .vs │ └── Listing 2-19 Method overriding │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-19 Method overriding.csproj.CoreCompileInputs.cache │ │ ├── Listing 2-19 Method overriding.exe │ │ ├── Listing 2-19 Method overriding.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 2-19 Method overriding.exe │ │ └── Listing 2-19 Method overriding.pdb └── App.config ├── Listing 2-24 Bad dynamic code ├── .vs │ └── Listing 2-24 Bad dynamic code │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-24 Bad dynamic code.csproj.CoreCompileInputs.cache │ │ ├── Listing 2-24 Bad dynamic code.exe │ │ ├── Listing 2-24 Bad dynamic code.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 2-24 Bad dynamic code.exe │ │ └── Listing 2-24 Bad dynamic code.pdb └── App.config ├── Listing 2-28 Using a proterty ├── .vs │ └── Listing 2-28 Using a proterty │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-28 Using a proterty.csproj.CoreCompileInputs.cache │ │ ├── Listing 2-28 Using a proterty.exe │ │ ├── Listing 2-28 Using a proterty.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 2-28 Using a proterty.exe │ │ └── Listing 2-28 Using a proterty.pdb └── App.config ├── Listing 2-40 Typed IComparable ├── .vs │ └── Listing 2-40 Typed IComparable │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-40 Typed IComparable.csproj.CoreCompileInputs.cache │ │ ├── Listing 2-40 Typed IComparable.exe │ │ ├── Listing 2-40 Typed IComparable.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 2-40 Typed IComparable.exe │ │ └── Listing 2-40 Typed IComparable.pdb └── App.config ├── Listing 2-41 Get an enumerator ├── .vs │ └── Listing 2-41 Get an enumerator │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-41 Get an enumerator.csproj.CoreCompileInputs.cache │ │ ├── Listing 2-41 Get an enumerator.exe │ │ ├── Listing 2-41 Get an enumerator.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 2-41 Get an enumerator.exe │ │ └── Listing 2-41 Get an enumerator.pdb └── App.config ├── Listing 2-45 Using IDisposable ├── .vs │ └── Listing 2-45 Using IDisposable │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-45 Using IDisposable.csproj.CoreCompileInputs.cache │ │ └── DesignTimeResolveAssemblyReferencesInput.cache └── App.config ├── Listing 2.11 Static variables ├── .vs │ └── Listing 2.11 Static variables │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2.11 Static variables.csproj.CoreCompileInputs.cache │ │ ├── Listing 2.11 Static variables.exe │ │ ├── Listing 2.11 Static variables.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 2.11 Static variables.exe │ │ └── Listing 2.11 Static variables.pdb └── App.config ├── Listing 2.13 Extension method ├── .vs │ └── Listing 2.13 Extension method │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2.13 Extension method.csproj.CoreCompileInputs.cache │ │ ├── Listing 2.13 Extension method.exe │ │ ├── Listing 2.13 Extension method.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 2.13 Extension method.exe │ │ └── Listing 2.13 Extension method.pdb └── App.config ├── Listing 2.14 Named parameters ├── .vs │ └── Listing 2.14 Named parameters │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2.14 Named parameters.csproj.CoreCompileInputs.cache │ │ ├── Listing 2.14 Named parameters.exe │ │ ├── Listing 2.14 Named parameters.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 2.14 Named parameters.exe │ │ └── Listing 2.14 Named parameters.pdb └── App.config ├── Listing1.13TaskReturningValue ├── .vs │ └── Listing1.13TaskReturningValue │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing1.13TaskReturningValue.csproj.CoreCompileInputs.cache │ │ ├── Listing1.13TaskReturningValue.exe │ │ ├── Listing1.13TaskReturningValue.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing1.13TaskReturningValue.exe │ │ └── Listing1.13TaskReturningValue.pdb └── App.config ├── Listing1.16ContinuationOptions ├── .vs │ └── Listing1.16ContinuationOptions │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing1.16ContinuationOptions.csproj.CoreCompileInputs.cache │ │ ├── Listing1.16ContinuationOptions.exe │ │ ├── Listing1.16ContinuationOptions.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing1.16ContinuationOptions.exe │ │ └── Listing1.16ContinuationOptions.pdb └── App.config ├── Listing1.17AttachedChildTasks ├── .vs │ └── Listing1.17AttachedChildTasks │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing1.17AttachedChildTasks.csproj.CoreCompileInputs.cache │ │ ├── Listing1.17AttachedChildTasks.exe │ │ ├── Listing1.17AttachedChildTasks.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing1.17AttachedChildTasks.exe │ │ └── Listing1.17AttachedChildTasks.pdb └── App.config ├── Listing2.6 Using generic types ├── .vs │ └── Listing2.6 Using generic types │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing2.6 Using generic types.csproj.CoreCompileInputs.cache │ │ ├── Listing2.6 Using generic types.exe │ │ ├── Listing2.6 Using generic types.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing2.6 Using generic types.exe │ │ └── Listing2.6 Using generic types.pdb └── App.config ├── Listing3-17 RSA key management ├── .vs │ └── Listing3-17 RSA key management │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing3-17 RSA key management.csproj.CoreCompileInputs.cache │ │ ├── Listing3-17 RSA key management.exe │ │ ├── Listing3-17 RSA key management.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing3-17 RSA key management.exe │ │ └── Listing3-17 RSA key management.pdb └── App.config ├── Listing3-19Machine level keys ├── .vs │ └── Listing3-19Machine level keys │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing3-19Machine level keys.csproj.CoreCompileInputs.cache │ │ ├── Listing3-19Machine level keys.exe │ │ ├── Listing3-19Machine level keys.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing3-19Machine level keys.exe │ │ └── Listing3-19Machine level keys.pdb └── App.config ├── Listing 1.9UsingTheForAllMethod ├── .vs │ └── Listing 1.9UsingTheForAllMethod │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 1.9UsingTheForAllMethod.csproj.CoreCompileInputs.cache │ │ ├── Listing 1.9UsingTheForAllMethod.exe │ │ ├── Listing 1.9UsingTheForAllMethod.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 1.9UsingTheForAllMethod.exe │ │ └── Listing 1.9UsingTheForAllMethod.pdb └── App.config ├── Listing 2-17 Indexing on strings ├── .vs │ └── Listing 2-17 Indexing on strings │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-17 Indexing on strings.csproj.CoreCompileInputs.cache │ │ ├── Listing 2-17 Indexing on strings.exe │ │ ├── Listing 2-17 Indexing on strings.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 2-17 Indexing on strings.exe │ │ └── Listing 2-17 Indexing on strings.pdb └── App.config ├── Listing 2-21 Boxing and unboxing ├── .vs │ └── Listing 2-21 Boxing and unboxing │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-21 Boxing and unboxing.csproj.CoreCompileInputs.cache │ │ ├── Listing 2-21 Boxing and unboxing.exe │ │ ├── Listing 2-21 Boxing and unboxing.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 2-21 Boxing and unboxing.exe │ │ └── Listing 2-21 Boxing and unboxing.pdb └── App.config ├── Listing 2-27 Public data members ├── .vs │ └── Listing 2-27 Public data members │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-27 Public data members.csproj.CoreCompileInputs.cache │ │ └── DesignTimeResolveAssemblyReferencesInput.cache └── App.config ├── Listing 2-32 Printing interface ├── .vs │ └── Listing 2-32 Printing interface │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-32 Printing interface.csproj.CoreCompileInputs.cache │ │ ├── Listing 2-32 Printing interface.exe │ │ ├── Listing 2-32 Printing interface.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 2-32 Printing interface.exe │ │ └── Listing 2-32 Printing interface.pdb └── App.config ├── Listing 2-33 IPrintable interface ├── .vs │ └── Listing 2-33 IPrintable interface │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-33 IPrintable interface.csproj.CoreCompileInputs.cache │ │ └── DesignTimeResolveAssemblyReferencesInput.cache └── App.config ├── Listing 2-53 Investigation a type ├── .vs │ └── Listing 2-53 Investigation a type │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-53 Investigation a type.csproj.CoreCompileInputs.cache │ │ ├── Listing 2-53 Investigation a type.exe │ │ ├── Listing 2-53 Investigation a type.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 2-53 Investigation a type.exe │ │ └── Listing 2-53 Investigation a type.pdb └── App.config ├── Listing 2.10 Static constructors ├── .vs │ └── Listing 2.10 Static constructors │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2.10 Static constructors.csproj.CoreCompileInputs.cache │ │ ├── Listing 2.10 Static constructors.exe │ │ ├── Listing 2.10 Static constructors.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 2.10 Static constructors.exe │ │ └── Listing 2.10 Static constructors.pdb └── App.config ├── Listing 2.16 Indexed properties ├── .vs │ └── Listing 2.16 Indexed properties │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2.16 Indexed properties.csproj.CoreCompileInputs.cache │ │ ├── Listing 2.16 Indexed properties.exe │ │ ├── Listing 2.16 Indexed properties.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 2.16 Indexed properties.exe │ │ └── Listing 2.16 Indexed properties.pdb └── App.config ├── Listing 2.9 Calling constructors ├── .vs │ └── Listing 2.9 Calling constructors │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2.9 Calling constructors.csproj.CoreCompileInputs.cache │ │ ├── Listing 2.9 Calling constructors.exe │ │ ├── Listing 2.9 Calling constructors.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 2.9 Calling constructors.exe │ │ └── Listing 2.9 Calling constructors.pdb └── App.config ├── Listing1.4ManagingParallelForLoop ├── .vs │ └── Listing1.4ManagingParallelForLoop │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing1.4ManagingParallelForLoop.csproj.CoreCompileInputs.cache │ │ ├── Listing1.4ManagingParallelForLoop.exe │ │ ├── Listing1.4ManagingParallelForLoop.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing1.4ManagingParallelForLoop.exe │ │ └── Listing1.4ManagingParallelForLoop.pdb └── App.config ├── Listing2.3 Creating a structure ├── .vs │ └── Listing2.3 Creating a structure │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing2.3 Creating a structure.csproj.CoreCompileInputs.cache │ │ ├── Listing2.3 Creating a structure.exe │ │ ├── Listing2.3 Creating a structure.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing2.3 Creating a structure.exe │ │ └── Listing2.3 Creating a structure.pdb └── App.config ├── Listing2.5 Creating a reference ├── .vs │ └── Listing2.5 Creating a reference │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing2.5 Creating a reference.csproj.CoreCompileInputs.cache │ │ ├── Listing2.5 Creating a reference.exe │ │ ├── Listing2.5 Creating a reference.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing2.5 Creating a reference.exe │ │ └── Listing2.5 Creating a reference.pdb └── App.config ├── Listing 2-26 interacting with excel ├── .vs │ └── Listing 2-26 interacting with excel │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-26 interacting with excel.csproj.CoreCompileInputs.cache │ │ ├── Listing 2-26 interacting with excel.exe │ │ ├── Listing 2-26 interacting with excel.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 2-26 interacting with excel.exe │ │ └── Listing 2-26 interacting with excel.pdb └── App.config ├── Listing 2-54 Reflection method call ├── .vs │ └── Listing 2-54 Reflection method call │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-54 Reflection method call.csproj.CoreCompileInputs.cache │ │ ├── Listing 2-54 Reflection method call.exe │ │ ├── Listing 2-54 Reflection method call.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing 2-54 Reflection method call.exe │ │ └── Listing 2-54 Reflection method call.pdb └── App.config ├── Listing1.10ExceptionsInPLINQQueries ├── .vs │ └── Listing1.10ExceptionsInPLINQQueries │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing1.10ExceptionsInPLINQQueries.csproj.CoreCompileInputs.cache │ │ ├── Listing1.10ExceptionsInPLINQQueries.exe │ │ ├── Listing1.10ExceptionsInPLINQQueries.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing1.10ExceptionsInPLINQQueries.exe │ │ └── Listing1.10ExceptionsInPLINQQueries.pdb └── App.config ├── Listing1.6InformingParallelization ├── .vs │ └── Listing1.6InformingParallelization │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing1.6InformingParallelization.csproj.CoreCompileInputs.cache │ │ ├── Listing1.6InformingParallelization.exe │ │ ├── Listing1.6InformingParallelization.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing1.6InformingParallelization.exe │ │ └── Listing1.6InformingParallelization.pdb └── App.config ├── Listing2.1Value and Reference types ├── .vs │ └── Listing2.1Value and Reference types │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing2.1Value and Reference types.csproj.CoreCompileInputs.cache │ │ ├── Listing2.1Value and Reference types.exe │ │ ├── Listing2.1Value and Reference types.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── bin │ └── Debug │ │ ├── Listing2.1Value and Reference types.exe │ │ └── Listing2.1Value and Reference types.pdb └── App.config ├── Listing 2-25 Using dynamic variables ├── .vs │ └── Listing 2-25 Using dynamic variables │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-25 Using dynamic variables.csproj.CoreCompileInputs.cache │ │ ├── Listing 2-25 Using dynamic variables.exe │ │ ├── Listing 2-25 Using dynamic variables.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── App.config └── bin │ └── Debug │ ├── Listing 2-25 Using dynamic variables.exe │ └── Listing 2-25 Using dynamic variables.pdb ├── Listing 2-29 Creating accessor methods ├── .vs │ └── Listing 2-29 Creating accessor methods │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-29 Creating accessor methods.csproj.CoreCompileInputs.cache │ │ ├── Listing 2-29 Creating accessor methods.exe │ │ ├── Listing 2-29 Creating accessor methods.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── App.config └── bin │ └── Debug │ ├── Listing 2-29 Creating accessor methods.exe │ └── Listing 2-29 Creating accessor methods.pdb ├── Listing 2.8 Overloaded constructors ├── .vs │ └── Listing 2.8 Overloaded constructors │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2.8 Overloaded constructors.csproj.CoreCompileInputs.cache │ │ └── DesignTimeResolveAssemblyReferencesInput.cache └── App.config ├── Listing 2-43 Creating an enumerable type ├── .vs │ └── Listing 2-43 Creating an enumerable type │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-43 Creating an enumerable type.csproj.CoreCompileInputs.cache │ │ ├── Listing 2-43 Creating an enumerable type.exe │ │ ├── Listing 2-43 Creating an enumerable type.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── App.config └── bin │ └── Debug │ ├── Listing 2-43 Creating an enumerable type.exe │ └── Listing 2-43 Creating an enumerable type.pdb ├── Listing 2-46 The serializable attribute ├── .vs │ └── Listing 2-46 The serializable attribute │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ └── db.lock │ │ └── .suo ├── obj │ └── Debug │ │ ├── Listing 2-46 The serializable attribute.csproj.CoreCompileInputs.cache │ │ └── DesignTimeResolveAssemblyReferencesInput.cache └── App.config ├── Listing2-18 Overloaded DateTime constructor ├── .vs │ └── Listing2-18 Overloaded DateTime constructor │ │ └── v16 │ │ └── Server │ │ └── sqlite3 │ │ └── db.lock ├── obj │ └── Debug │ │ └── Listing2-18 Overloaded DateTime constructor.csproj.CoreCompileInputs.cache └── App.config ├── Listing1.7UsingAsOrderedToPreserveDataOrdening ├── .vs │ └── Listing1.7UsingAsOrderedToPreserveDataOrdening │ │ └── v16 │ │ └── Server │ │ └── sqlite3 │ │ └── db.lock ├── obj │ └── Debug │ │ └── Listing1.7UsingAsOrderedToPreserveDataOrdening.csproj.CoreCompileInputs.cache └── App.config └── Listing1.8IdentifyingElements of a ParallelQueryAsSequential ├── .vs └── Listing1.8IdentifyingElements of a ParallelQueryAsSequential │ └── v16 │ └── Server │ └── sqlite3 │ └── db.lock └── obj └── Debug └── Listing1.8IdentifyingElements of a ParallelQueryAsSequential.csproj.CoreCompileInputs.cache /Listing3-23SHA2/.vs/Listing3-23SHA2/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing3-32Hashing/.vs/Listing3-32Hashing/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing1.12RunATask/.vs/Listing1.12RunATask/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-20 Using base/.vs/Listing 2-20 Using base/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-44 Using yeld/.vs/Listing 2-44 Using yeld/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing1.11CreateTask/.vs/Listing1.11CreateTask/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing1.14TaskWaitall/.vs/Listing1.14TaskWaitall/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing1.3ParallelFor/.vs/Listing1.3ParallelFor/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing1.5ParallelLINQ/.vs/Listing1.5ParallelLINQ/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing3-21 Checksums/.vs/Listing3-21 Checksums/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2.7 Constructors/.vs/Listing 2.7 Constructors/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/.vs/Listing 3-1 Creating JSON/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/obj/Debug/Listing 3-1 Creating JSON.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 3-2 Creating XML/.vs/Listing 3-2 Creating XML/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing1.1Parallel.Invoke/.vs/Listing1.1Parallel.Invoke/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing3-12Using Convert/.vs/Listing3-12Using Convert/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing3-14AES encryption/.vs/Listing3-14AES encryption/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing3-15AES decryption/.vs/Listing3-15AES decryption/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing3-16RSA encryption/.vs/Listing3-16RSA encryption/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-23 Type conversion/.vs/Listing 2-23 Type conversion/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-31 Protected class/.vs/Listing 2-31 Protected class/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-42 Using foreach/.vs/Listing 2-42 Using foreach/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2.12 Simple Method/.vs/Listing 2.12 Simple Method/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/.vs/Listing 3-3 Validating JSON/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/obj/Debug/Listing 3-3 Validating JSON.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing.2.4 Creating an enum/.vs/Listing.2.4 Creating an enum/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing1.15ContinuationTasks/.vs/Listing1.15ContinuationTasks/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing1.2Parallel.ForEach/.vs/Listing1.2Parallel.ForEach/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing3-11 Using TryParse/.vs/Listing3-11 Using TryParse/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing3-5 Copy construtor/.vs/Listing3-5 Copy construtor/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-19 Method overriding/.vs/Listing 2-19 Method overriding/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-24 Bad dynamic code/.vs/Listing 2-24 Bad dynamic code/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-28 Using a proterty/.vs/Listing 2-28 Using a proterty/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-40 Typed IComparable/.vs/Listing 2-40 Typed IComparable/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-41 Get an enumerator/.vs/Listing 2-41 Get an enumerator/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-45 Using IDisposable/.vs/Listing 2-45 Using IDisposable/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2.11 Static variables/.vs/Listing 2.11 Static variables/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2.13 Extension method/.vs/Listing 2.13 Extension method/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2.14 Named parameters/.vs/Listing 2.14 Named parameters/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing1.13TaskReturningValue/.vs/Listing1.13TaskReturningValue/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing1.16ContinuationOptions/.vs/Listing1.16ContinuationOptions/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing1.17AttachedChildTasks/.vs/Listing1.17AttachedChildTasks/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing2.6 Using generic types/.vs/Listing2.6 Using generic types/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing3-17 RSA key management/.vs/Listing3-17 RSA key management/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing3-19Machine level keys/.vs/Listing3-19Machine level keys/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 1.9UsingTheForAllMethod/.vs/Listing 1.9UsingTheForAllMethod/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-17 Indexing on strings/.vs/Listing 2-17 Indexing on strings/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-21 Boxing and unboxing/.vs/Listing 2-21 Boxing and unboxing/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-27 Public data members/.vs/Listing 2-27 Public data members/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-32 Printing interface/.vs/Listing 2-32 Printing interface/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-33 IPrintable interface/.vs/Listing 2-33 IPrintable interface/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-53 Investigation a type/.vs/Listing 2-53 Investigation a type/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2.10 Static constructors/.vs/Listing 2.10 Static constructors/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2.16 Indexed properties/.vs/Listing 2.16 Indexed properties/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2.9 Calling constructors/.vs/Listing 2.9 Calling constructors/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing1.4ManagingParallelForLoop/.vs/Listing1.4ManagingParallelForLoop/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing2.3 Creating a structure/.vs/Listing2.3 Creating a structure/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing2.5 Creating a reference/.vs/Listing2.5 Creating a reference/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-26 interacting with excel/.vs/Listing 2-26 interacting with excel/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-54 Reflection method call/.vs/Listing 2-54 Reflection method call/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing1.10ExceptionsInPLINQQueries/.vs/Listing1.10ExceptionsInPLINQQueries/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing1.6InformingParallelization/.vs/Listing1.6InformingParallelization/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing2.1Value and Reference types/.vs/Listing2.1Value and Reference types/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-25 Using dynamic variables/.vs/Listing 2-25 Using dynamic variables/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-29 Creating accessor methods/.vs/Listing 2-29 Creating accessor methods/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2.8 Overloaded constructors/.vs/Listing 2.8 Overloaded constructors/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-43 Creating an enumerable type/.vs/Listing 2-43 Creating an enumerable type/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-46 The serializable attribute/.vs/Listing 2-46 The serializable attribute/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing2-18 Overloaded DateTime constructor/.vs/Listing2-18 Overloaded DateTime constructor/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing3-23SHA2/obj/Debug/Listing3-23SHA2.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing3-32Hashing/obj/Debug/Listing3-32Hashing.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing1.12RunATask/obj/Debug/Listing1.12RunATask.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing1.7UsingAsOrderedToPreserveDataOrdening/.vs/Listing1.7UsingAsOrderedToPreserveDataOrdening/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing 2-20 Using base/obj/Debug/Listing 2-20 Using base.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2-44 Using yeld/obj/Debug/Listing 2-44 Using yeld.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing1.11CreateTask/obj/Debug/Listing1.11CreateTask.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing1.14TaskWaitall/obj/Debug/Listing1.14TaskWaitall.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing1.3ParallelFor/obj/Debug/Listing1.3ParallelFor.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing1.5ParallelLINQ/obj/Debug/Listing1.5ParallelLINQ.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing3-21 Checksums/obj/Debug/Listing3-21 Checksums.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2.7 Constructors/obj/Debug/Listing 2.7 Constructors.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/obj/Debug/Listing 3-1 Creating JSON.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d02f9be9e9323810bcca91af3a99970d0f3d911f 2 | -------------------------------------------------------------------------------- /Listing 3-2 Creating XML/obj/Debug/Listing 3-2 Creating XML.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing1.1Parallel.Invoke/obj/Debug/Listing1.1Parallel.Invoke.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing3-12Using Convert/obj/Debug/Listing3-12Using Convert.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | b53bf27e82cea9d0cc7d31e6344cef1f748be5f9 2 | -------------------------------------------------------------------------------- /Listing3-14AES encryption/obj/Debug/Listing3-14AES encryption.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing3-15AES decryption/obj/Debug/Listing3-15AES decryption.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing3-16RSA encryption/obj/Debug/Listing3-16RSA encryption.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2-23 Type conversion/obj/Debug/Listing 2-23 Type conversion.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2-31 Protected class/obj/Debug/Listing 2-31 Protected class.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2-42 Using foreach/obj/Debug/Listing 2-42 Using foreach.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2.12 Simple Method/obj/Debug/Listing 2.12 Simple Method.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/obj/Debug/Listing 3-3 Validating JSON.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5957352bf066fd1fff1875bfcacd3395a66ec2e7 2 | -------------------------------------------------------------------------------- /Listing.2.4 Creating an enum/obj/Debug/Listing.2.4 Creating an enum.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing1.15ContinuationTasks/obj/Debug/Listing1.15ContinuationTasks.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing1.2Parallel.ForEach/obj/Debug/Listing1.2Parallel.ForEach.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing3-11 Using TryParse/obj/Debug/Listing3-11 Using TryParse.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing3-5 Copy construtor/obj/Debug/Listing3-5 Copy construtor.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2-19 Method overriding/obj/Debug/Listing 2-19 Method overriding.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2-24 Bad dynamic code/obj/Debug/Listing 2-24 Bad dynamic code.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2-28 Using a proterty/obj/Debug/Listing 2-28 Using a proterty.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2-40 Typed IComparable/obj/Debug/Listing 2-40 Typed IComparable.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2-41 Get an enumerator/obj/Debug/Listing 2-41 Get an enumerator.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2-45 Using IDisposable/obj/Debug/Listing 2-45 Using IDisposable.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2.11 Static variables/obj/Debug/Listing 2.11 Static variables.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing 2.13 Extension method/obj/Debug/Listing 2.13 Extension method.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 25fe23d82a05b770b5a7eb528acf38ca15e642b8 2 | -------------------------------------------------------------------------------- /Listing 2.14 Named parameters/obj/Debug/Listing 2.14 Named parameters.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing1.13TaskReturningValue/obj/Debug/Listing1.13TaskReturningValue.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing1.16ContinuationOptions/obj/Debug/Listing1.16ContinuationOptions.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing1.17AttachedChildTasks/obj/Debug/Listing1.17AttachedChildTasks.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing2.6 Using generic types/obj/Debug/Listing2.6 Using generic types.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing3-17 RSA key management/obj/Debug/Listing3-17 RSA key management.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing3-19Machine level keys/obj/Debug/Listing3-19Machine level keys.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 1.9UsingTheForAllMethod/obj/Debug/Listing 1.9UsingTheForAllMethod.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing 2-17 Indexing on strings/obj/Debug/Listing 2-17 Indexing on strings.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing 2-21 Boxing and unboxing/obj/Debug/Listing 2-21 Boxing and unboxing.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2-27 Public data members/obj/Debug/Listing 2-27 Public data members.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2-32 Printing interface/obj/Debug/Listing 2-32 Printing interface.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2-33 IPrintable interface/obj/Debug/Listing 2-33 IPrintable interface.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2-53 Investigation a type/obj/Debug/Listing 2-53 Investigation a type.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2.10 Static constructors/obj/Debug/Listing 2.10 Static constructors.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing 2.16 Indexed properties/obj/Debug/Listing 2.16 Indexed properties.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing 2.9 Calling constructors/obj/Debug/Listing 2.9 Calling constructors.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing1.4ManagingParallelForLoop/obj/Debug/Listing1.4ManagingParallelForLoop.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing1.8IdentifyingElements of a ParallelQueryAsSequential/.vs/Listing1.8IdentifyingElements of a ParallelQueryAsSequential/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Listing2.3 Creating a structure/obj/Debug/Listing2.3 Creating a structure.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing2.5 Creating a reference/obj/Debug/Listing2.5 Creating a reference.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing 2-26 interacting with excel/obj/Debug/Listing 2-26 interacting with excel.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 604cafd28b7fd871b21bcc26306246ee11db90e3 2 | -------------------------------------------------------------------------------- /Listing 2-54 Reflection method call/obj/Debug/Listing 2-54 Reflection method call.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing1.10ExceptionsInPLINQQueries/obj/Debug/Listing1.10ExceptionsInPLINQQueries.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing1.6InformingParallelization/obj/Debug/Listing1.6InformingParallelization.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing2.1Value and Reference types/obj/Debug/Listing2.1Value and Reference types.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing 2-25 Using dynamic variables/obj/Debug/Listing 2-25 Using dynamic variables.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2-29 Creating accessor methods/obj/Debug/Listing 2-29 Creating accessor methods.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2.8 Overloaded constructors/obj/Debug/Listing 2.8 Overloaded constructors.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing3-23SHA2/.vs/Listing3-23SHA2/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-23SHA2/.vs/Listing3-23SHA2/v16/.suo -------------------------------------------------------------------------------- /Listing3-23SHA2/bin/Debug/Listing3-23SHA2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-23SHA2/bin/Debug/Listing3-23SHA2.exe -------------------------------------------------------------------------------- /Listing3-23SHA2/bin/Debug/Listing3-23SHA2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-23SHA2/bin/Debug/Listing3-23SHA2.pdb -------------------------------------------------------------------------------- /Listing3-23SHA2/obj/Debug/Listing3-23SHA2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-23SHA2/obj/Debug/Listing3-23SHA2.exe -------------------------------------------------------------------------------- /Listing3-23SHA2/obj/Debug/Listing3-23SHA2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-23SHA2/obj/Debug/Listing3-23SHA2.pdb -------------------------------------------------------------------------------- /Listing 2-43 Creating an enumerable type/obj/Debug/Listing 2-43 Creating an enumerable type.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing 2-46 The serializable attribute/obj/Debug/Listing 2-46 The serializable attribute.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing2-18 Overloaded DateTime constructor/obj/Debug/Listing2-18 Overloaded DateTime constructor.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3f5686ff9a1fde5b39a72ea3899cbebdcaba5c7f 2 | -------------------------------------------------------------------------------- /Listing3-32Hashing/.vs/Listing3-32Hashing/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-32Hashing/.vs/Listing3-32Hashing/v16/.suo -------------------------------------------------------------------------------- /Listing1.12RunATask/.vs/Listing1.12RunATask/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.12RunATask/.vs/Listing1.12RunATask/v16/.suo -------------------------------------------------------------------------------- /Listing1.12RunATask/bin/Debug/Listing1.12RunATask.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.12RunATask/bin/Debug/Listing1.12RunATask.exe -------------------------------------------------------------------------------- /Listing1.12RunATask/bin/Debug/Listing1.12RunATask.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.12RunATask/bin/Debug/Listing1.12RunATask.pdb -------------------------------------------------------------------------------- /Listing1.12RunATask/obj/Debug/Listing1.12RunATask.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.12RunATask/obj/Debug/Listing1.12RunATask.exe -------------------------------------------------------------------------------- /Listing1.12RunATask/obj/Debug/Listing1.12RunATask.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.12RunATask/obj/Debug/Listing1.12RunATask.pdb -------------------------------------------------------------------------------- /Listing3-32Hashing/bin/Debug/Listing3-32Hashing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-32Hashing/bin/Debug/Listing3-32Hashing.exe -------------------------------------------------------------------------------- /Listing3-32Hashing/bin/Debug/Listing3-32Hashing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-32Hashing/bin/Debug/Listing3-32Hashing.pdb -------------------------------------------------------------------------------- /Listing3-32Hashing/obj/Debug/Listing3-32Hashing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-32Hashing/obj/Debug/Listing3-32Hashing.exe -------------------------------------------------------------------------------- /Listing3-32Hashing/obj/Debug/Listing3-32Hashing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-32Hashing/obj/Debug/Listing3-32Hashing.pdb -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-1 Creating JSON/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Listing1.7UsingAsOrderedToPreserveDataOrdening/obj/Debug/Listing1.7UsingAsOrderedToPreserveDataOrdening.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-3 Validating JSON/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Listing1.11CreateTask/.vs/Listing1.11CreateTask/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.11CreateTask/.vs/Listing1.11CreateTask/v16/.suo -------------------------------------------------------------------------------- /Listing1.11CreateTask/bin/Debug/Listing1.11CreateTask.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.11CreateTask/bin/Debug/Listing1.11CreateTask.exe -------------------------------------------------------------------------------- /Listing1.11CreateTask/bin/Debug/Listing1.11CreateTask.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.11CreateTask/bin/Debug/Listing1.11CreateTask.pdb -------------------------------------------------------------------------------- /Listing1.11CreateTask/obj/Debug/Listing1.11CreateTask.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.11CreateTask/obj/Debug/Listing1.11CreateTask.exe -------------------------------------------------------------------------------- /Listing1.11CreateTask/obj/Debug/Listing1.11CreateTask.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.11CreateTask/obj/Debug/Listing1.11CreateTask.pdb -------------------------------------------------------------------------------- /Listing1.14TaskWaitall/.vs/Listing1.14TaskWaitall/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.14TaskWaitall/.vs/Listing1.14TaskWaitall/v16/.suo -------------------------------------------------------------------------------- /Listing1.3ParallelFor/.vs/Listing1.3ParallelFor/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.3ParallelFor/.vs/Listing1.3ParallelFor/v16/.suo -------------------------------------------------------------------------------- /Listing1.3ParallelFor/bin/Debug/Listing1.3ParallelFor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.3ParallelFor/bin/Debug/Listing1.3ParallelFor.exe -------------------------------------------------------------------------------- /Listing1.3ParallelFor/bin/Debug/Listing1.3ParallelFor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.3ParallelFor/bin/Debug/Listing1.3ParallelFor.pdb -------------------------------------------------------------------------------- /Listing1.3ParallelFor/obj/Debug/Listing1.3ParallelFor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.3ParallelFor/obj/Debug/Listing1.3ParallelFor.exe -------------------------------------------------------------------------------- /Listing1.3ParallelFor/obj/Debug/Listing1.3ParallelFor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.3ParallelFor/obj/Debug/Listing1.3ParallelFor.pdb -------------------------------------------------------------------------------- /Listing1.5ParallelLINQ/.vs/Listing1.5ParallelLINQ/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.5ParallelLINQ/.vs/Listing1.5ParallelLINQ/v16/.suo -------------------------------------------------------------------------------- /Listing3-21 Checksums/.vs/Listing3-21 Checksums/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-21 Checksums/.vs/Listing3-21 Checksums/v16/.suo -------------------------------------------------------------------------------- /Listing3-21 Checksums/bin/Debug/Listing3-21 Checksums.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-21 Checksums/bin/Debug/Listing3-21 Checksums.exe -------------------------------------------------------------------------------- /Listing3-21 Checksums/bin/Debug/Listing3-21 Checksums.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-21 Checksums/bin/Debug/Listing3-21 Checksums.pdb -------------------------------------------------------------------------------- /Listing3-21 Checksums/obj/Debug/Listing3-21 Checksums.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-21 Checksums/obj/Debug/Listing3-21 Checksums.exe -------------------------------------------------------------------------------- /Listing3-21 Checksums/obj/Debug/Listing3-21 Checksums.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-21 Checksums/obj/Debug/Listing3-21 Checksums.pdb -------------------------------------------------------------------------------- /Listing 2-20 Using base/.vs/Listing 2-20 Using base/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-20 Using base/.vs/Listing 2-20 Using base/v16/.suo -------------------------------------------------------------------------------- /Listing 2-44 Using yeld/.vs/Listing 2-44 Using yeld/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-44 Using yeld/.vs/Listing 2-44 Using yeld/v16/.suo -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Listing1.14TaskWaitall/bin/Debug/Listing1.14TaskWaitall.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.14TaskWaitall/bin/Debug/Listing1.14TaskWaitall.exe -------------------------------------------------------------------------------- /Listing1.14TaskWaitall/bin/Debug/Listing1.14TaskWaitall.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.14TaskWaitall/bin/Debug/Listing1.14TaskWaitall.pdb -------------------------------------------------------------------------------- /Listing1.14TaskWaitall/obj/Debug/Listing1.14TaskWaitall.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.14TaskWaitall/obj/Debug/Listing1.14TaskWaitall.exe -------------------------------------------------------------------------------- /Listing1.14TaskWaitall/obj/Debug/Listing1.14TaskWaitall.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.14TaskWaitall/obj/Debug/Listing1.14TaskWaitall.pdb -------------------------------------------------------------------------------- /Listing1.5ParallelLINQ/bin/Debug/Listing1.5ParallelLINQ.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.5ParallelLINQ/bin/Debug/Listing1.5ParallelLINQ.exe -------------------------------------------------------------------------------- /Listing1.5ParallelLINQ/bin/Debug/Listing1.5ParallelLINQ.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.5ParallelLINQ/bin/Debug/Listing1.5ParallelLINQ.pdb -------------------------------------------------------------------------------- /Listing1.5ParallelLINQ/obj/Debug/Listing1.5ParallelLINQ.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.5ParallelLINQ/obj/Debug/Listing1.5ParallelLINQ.exe -------------------------------------------------------------------------------- /Listing1.5ParallelLINQ/obj/Debug/Listing1.5ParallelLINQ.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.5ParallelLINQ/obj/Debug/Listing1.5ParallelLINQ.pdb -------------------------------------------------------------------------------- /Listing 2-20 Using base/bin/Debug/Listing 2-20 Using base.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-20 Using base/bin/Debug/Listing 2-20 Using base.exe -------------------------------------------------------------------------------- /Listing 2-20 Using base/bin/Debug/Listing 2-20 Using base.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-20 Using base/bin/Debug/Listing 2-20 Using base.pdb -------------------------------------------------------------------------------- /Listing 2-20 Using base/obj/Debug/Listing 2-20 Using base.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-20 Using base/obj/Debug/Listing 2-20 Using base.exe -------------------------------------------------------------------------------- /Listing 2-20 Using base/obj/Debug/Listing 2-20 Using base.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-20 Using base/obj/Debug/Listing 2-20 Using base.pdb -------------------------------------------------------------------------------- /Listing 2-44 Using yeld/bin/Debug/Listing 2-44 Using yeld.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-44 Using yeld/bin/Debug/Listing 2-44 Using yeld.exe -------------------------------------------------------------------------------- /Listing 2-44 Using yeld/bin/Debug/Listing 2-44 Using yeld.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-44 Using yeld/bin/Debug/Listing 2-44 Using yeld.pdb -------------------------------------------------------------------------------- /Listing 2-44 Using yeld/obj/Debug/Listing 2-44 Using yeld.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-44 Using yeld/obj/Debug/Listing 2-44 Using yeld.exe -------------------------------------------------------------------------------- /Listing 2-44 Using yeld/obj/Debug/Listing 2-44 Using yeld.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-44 Using yeld/obj/Debug/Listing 2-44 Using yeld.pdb -------------------------------------------------------------------------------- /Listing 2.7 Constructors/.vs/Listing 2.7 Constructors/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.7 Constructors/.vs/Listing 2.7 Constructors/v16/.suo -------------------------------------------------------------------------------- /Listing 2.7 Constructors/bin/Debug/Listing 2.7 Constructors.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.7 Constructors/bin/Debug/Listing 2.7 Constructors.exe -------------------------------------------------------------------------------- /Listing 2.7 Constructors/bin/Debug/Listing 2.7 Constructors.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.7 Constructors/bin/Debug/Listing 2.7 Constructors.pdb -------------------------------------------------------------------------------- /Listing 2.7 Constructors/obj/Debug/Listing 2.7 Constructors.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.7 Constructors/obj/Debug/Listing 2.7 Constructors.exe -------------------------------------------------------------------------------- /Listing 2.7 Constructors/obj/Debug/Listing 2.7 Constructors.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.7 Constructors/obj/Debug/Listing 2.7 Constructors.pdb -------------------------------------------------------------------------------- /Listing 3-2 Creating XML/.vs/Listing 3-2 Creating XML/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-2 Creating XML/.vs/Listing 3-2 Creating XML/v16/.suo -------------------------------------------------------------------------------- /Listing 3-2 Creating XML/bin/Debug/Listing 3-2 Creating XML.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-2 Creating XML/bin/Debug/Listing 3-2 Creating XML.exe -------------------------------------------------------------------------------- /Listing 3-2 Creating XML/bin/Debug/Listing 3-2 Creating XML.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-2 Creating XML/bin/Debug/Listing 3-2 Creating XML.pdb -------------------------------------------------------------------------------- /Listing 3-2 Creating XML/obj/Debug/Listing 3-2 Creating XML.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-2 Creating XML/obj/Debug/Listing 3-2 Creating XML.exe -------------------------------------------------------------------------------- /Listing 3-2 Creating XML/obj/Debug/Listing 3-2 Creating XML.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-2 Creating XML/obj/Debug/Listing 3-2 Creating XML.pdb -------------------------------------------------------------------------------- /Listing3-12Using Convert/.vs/Listing3-12Using Convert/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-12Using Convert/.vs/Listing3-12Using Convert/v16/.suo -------------------------------------------------------------------------------- /Listing3-12Using Convert/bin/Debug/Listing3-12Using Convert.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-12Using Convert/bin/Debug/Listing3-12Using Convert.exe -------------------------------------------------------------------------------- /Listing3-12Using Convert/bin/Debug/Listing3-12Using Convert.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-12Using Convert/bin/Debug/Listing3-12Using Convert.pdb -------------------------------------------------------------------------------- /Listing3-12Using Convert/obj/Debug/Listing3-12Using Convert.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-12Using Convert/obj/Debug/Listing3-12Using Convert.exe -------------------------------------------------------------------------------- /Listing3-12Using Convert/obj/Debug/Listing3-12Using Convert.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-12Using Convert/obj/Debug/Listing3-12Using Convert.pdb -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/.vs/Listing 3-1 Creating JSON/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-1 Creating JSON/.vs/Listing 3-1 Creating JSON/v16/.suo -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/bin/Debug/Listing 3-1 Creating JSON.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-1 Creating JSON/bin/Debug/Listing 3-1 Creating JSON.exe -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/bin/Debug/Listing 3-1 Creating JSON.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-1 Creating JSON/bin/Debug/Listing 3-1 Creating JSON.pdb -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/obj/Debug/Listing 3-1 Creating JSON.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-1 Creating JSON/obj/Debug/Listing 3-1 Creating JSON.exe -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/obj/Debug/Listing 3-1 Creating JSON.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-1 Creating JSON/obj/Debug/Listing 3-1 Creating JSON.pdb -------------------------------------------------------------------------------- /Listing1.1Parallel.Invoke/.vs/Listing1.1Parallel.Invoke/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.1Parallel.Invoke/.vs/Listing1.1Parallel.Invoke/v16/.suo -------------------------------------------------------------------------------- /Listing1.1Parallel.Invoke/bin/Debug/Listing1.1Parallel.Invoke.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.1Parallel.Invoke/bin/Debug/Listing1.1Parallel.Invoke.exe -------------------------------------------------------------------------------- /Listing1.1Parallel.Invoke/bin/Debug/Listing1.1Parallel.Invoke.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.1Parallel.Invoke/bin/Debug/Listing1.1Parallel.Invoke.pdb -------------------------------------------------------------------------------- /Listing1.1Parallel.Invoke/obj/Debug/Listing1.1Parallel.Invoke.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.1Parallel.Invoke/obj/Debug/Listing1.1Parallel.Invoke.exe -------------------------------------------------------------------------------- /Listing1.1Parallel.Invoke/obj/Debug/Listing1.1Parallel.Invoke.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.1Parallel.Invoke/obj/Debug/Listing1.1Parallel.Invoke.pdb -------------------------------------------------------------------------------- /Listing3-14AES encryption/.vs/Listing3-14AES encryption/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-14AES encryption/.vs/Listing3-14AES encryption/v16/.suo -------------------------------------------------------------------------------- /Listing3-14AES encryption/bin/Debug/Listing3-14AES encryption.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-14AES encryption/bin/Debug/Listing3-14AES encryption.exe -------------------------------------------------------------------------------- /Listing3-14AES encryption/bin/Debug/Listing3-14AES encryption.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-14AES encryption/bin/Debug/Listing3-14AES encryption.pdb -------------------------------------------------------------------------------- /Listing3-14AES encryption/obj/Debug/Listing3-14AES encryption.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-14AES encryption/obj/Debug/Listing3-14AES encryption.exe -------------------------------------------------------------------------------- /Listing3-14AES encryption/obj/Debug/Listing3-14AES encryption.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-14AES encryption/obj/Debug/Listing3-14AES encryption.pdb -------------------------------------------------------------------------------- /Listing3-15AES decryption/.vs/Listing3-15AES decryption/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-15AES decryption/.vs/Listing3-15AES decryption/v16/.suo -------------------------------------------------------------------------------- /Listing3-15AES decryption/bin/Debug/Listing3-15AES decryption.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-15AES decryption/bin/Debug/Listing3-15AES decryption.exe -------------------------------------------------------------------------------- /Listing3-15AES decryption/bin/Debug/Listing3-15AES decryption.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-15AES decryption/bin/Debug/Listing3-15AES decryption.pdb -------------------------------------------------------------------------------- /Listing3-15AES decryption/obj/Debug/Listing3-15AES decryption.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-15AES decryption/obj/Debug/Listing3-15AES decryption.exe -------------------------------------------------------------------------------- /Listing3-15AES decryption/obj/Debug/Listing3-15AES decryption.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-15AES decryption/obj/Debug/Listing3-15AES decryption.pdb -------------------------------------------------------------------------------- /Listing3-16RSA encryption/.vs/Listing3-16RSA encryption/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-16RSA encryption/.vs/Listing3-16RSA encryption/v16/.suo -------------------------------------------------------------------------------- /Listing3-16RSA encryption/bin/Debug/Listing3-16RSA encryption.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-16RSA encryption/bin/Debug/Listing3-16RSA encryption.exe -------------------------------------------------------------------------------- /Listing3-16RSA encryption/bin/Debug/Listing3-16RSA encryption.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-16RSA encryption/bin/Debug/Listing3-16RSA encryption.pdb -------------------------------------------------------------------------------- /Listing3-16RSA encryption/obj/Debug/Listing3-16RSA encryption.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-16RSA encryption/obj/Debug/Listing3-16RSA encryption.exe -------------------------------------------------------------------------------- /Listing3-16RSA encryption/obj/Debug/Listing3-16RSA encryption.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-16RSA encryption/obj/Debug/Listing3-16RSA encryption.pdb -------------------------------------------------------------------------------- /Listing 2-42 Using foreach/.vs/Listing 2-42 Using foreach/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-42 Using foreach/.vs/Listing 2-42 Using foreach/v16/.suo -------------------------------------------------------------------------------- /Listing 2-42 Using foreach/bin/Debug/Listing 2-42 Using foreach.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-42 Using foreach/bin/Debug/Listing 2-42 Using foreach.exe -------------------------------------------------------------------------------- /Listing 2-42 Using foreach/bin/Debug/Listing 2-42 Using foreach.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-42 Using foreach/bin/Debug/Listing 2-42 Using foreach.pdb -------------------------------------------------------------------------------- /Listing 2-42 Using foreach/obj/Debug/Listing 2-42 Using foreach.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-42 Using foreach/obj/Debug/Listing 2-42 Using foreach.exe -------------------------------------------------------------------------------- /Listing 2-42 Using foreach/obj/Debug/Listing 2-42 Using foreach.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-42 Using foreach/obj/Debug/Listing 2-42 Using foreach.pdb -------------------------------------------------------------------------------- /Listing 2.12 Simple Method/.vs/Listing 2.12 Simple Method/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.12 Simple Method/.vs/Listing 2.12 Simple Method/v16/.suo -------------------------------------------------------------------------------- /Listing 2.12 Simple Method/bin/Debug/Listing 2.12 Simple Method.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.12 Simple Method/bin/Debug/Listing 2.12 Simple Method.exe -------------------------------------------------------------------------------- /Listing 2.12 Simple Method/bin/Debug/Listing 2.12 Simple Method.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.12 Simple Method/bin/Debug/Listing 2.12 Simple Method.pdb -------------------------------------------------------------------------------- /Listing 2.12 Simple Method/obj/Debug/Listing 2.12 Simple Method.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.12 Simple Method/obj/Debug/Listing 2.12 Simple Method.exe -------------------------------------------------------------------------------- /Listing 2.12 Simple Method/obj/Debug/Listing 2.12 Simple Method.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.12 Simple Method/obj/Debug/Listing 2.12 Simple Method.pdb -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/.vs/Listing 3-3 Validating JSON/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-3 Validating JSON/.vs/Listing 3-3 Validating JSON/v16/.suo -------------------------------------------------------------------------------- /Listing1.2Parallel.ForEach/.vs/Listing1.2Parallel.ForEach/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.2Parallel.ForEach/.vs/Listing1.2Parallel.ForEach/v16/.suo -------------------------------------------------------------------------------- /Listing1.2Parallel.ForEach/bin/Debug/Listing1.2Parallel.ForEach.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.2Parallel.ForEach/bin/Debug/Listing1.2Parallel.ForEach.exe -------------------------------------------------------------------------------- /Listing1.2Parallel.ForEach/bin/Debug/Listing1.2Parallel.ForEach.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.2Parallel.ForEach/bin/Debug/Listing1.2Parallel.ForEach.pdb -------------------------------------------------------------------------------- /Listing1.2Parallel.ForEach/obj/Debug/Listing1.2Parallel.ForEach.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.2Parallel.ForEach/obj/Debug/Listing1.2Parallel.ForEach.exe -------------------------------------------------------------------------------- /Listing1.2Parallel.ForEach/obj/Debug/Listing1.2Parallel.ForEach.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.2Parallel.ForEach/obj/Debug/Listing1.2Parallel.ForEach.pdb -------------------------------------------------------------------------------- /Listing1.8IdentifyingElements of a ParallelQueryAsSequential/obj/Debug/Listing1.8IdentifyingElements of a ParallelQueryAsSequential.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6d2d9ff06384618931d754fecc2ffb5d5683d1d6 2 | -------------------------------------------------------------------------------- /Listing3-11 Using TryParse/.vs/Listing3-11 Using TryParse/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-11 Using TryParse/.vs/Listing3-11 Using TryParse/v16/.suo -------------------------------------------------------------------------------- /Listing3-11 Using TryParse/bin/Debug/Listing3-11 Using TryParse.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-11 Using TryParse/bin/Debug/Listing3-11 Using TryParse.exe -------------------------------------------------------------------------------- /Listing3-11 Using TryParse/bin/Debug/Listing3-11 Using TryParse.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-11 Using TryParse/bin/Debug/Listing3-11 Using TryParse.pdb -------------------------------------------------------------------------------- /Listing3-11 Using TryParse/obj/Debug/Listing3-11 Using TryParse.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-11 Using TryParse/obj/Debug/Listing3-11 Using TryParse.exe -------------------------------------------------------------------------------- /Listing3-11 Using TryParse/obj/Debug/Listing3-11 Using TryParse.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-11 Using TryParse/obj/Debug/Listing3-11 Using TryParse.pdb -------------------------------------------------------------------------------- /Listing3-23SHA2/.vs/Listing3-23SHA2/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-23SHA2/.vs/Listing3-23SHA2/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing3-5 Copy construtor/.vs/Listing3-5 Copy construtor/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-5 Copy construtor/.vs/Listing3-5 Copy construtor/v16/.suo -------------------------------------------------------------------------------- /Listing3-5 Copy construtor/bin/Debug/Listing3-5 Copy construtor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-5 Copy construtor/bin/Debug/Listing3-5 Copy construtor.exe -------------------------------------------------------------------------------- /Listing3-5 Copy construtor/bin/Debug/Listing3-5 Copy construtor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-5 Copy construtor/bin/Debug/Listing3-5 Copy construtor.pdb -------------------------------------------------------------------------------- /Listing3-5 Copy construtor/obj/Debug/Listing3-5 Copy construtor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-5 Copy construtor/obj/Debug/Listing3-5 Copy construtor.exe -------------------------------------------------------------------------------- /Listing3-5 Copy construtor/obj/Debug/Listing3-5 Copy construtor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-5 Copy construtor/obj/Debug/Listing3-5 Copy construtor.pdb -------------------------------------------------------------------------------- /Listing 2-23 Type conversion/.vs/Listing 2-23 Type conversion/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-23 Type conversion/.vs/Listing 2-23 Type conversion/v16/.suo -------------------------------------------------------------------------------- /Listing 2-31 Protected class/.vs/Listing 2-31 Protected class/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-31 Protected class/.vs/Listing 2-31 Protected class/v16/.suo -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/bin/Debug/Listing 3-3 Validating JSON.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-3 Validating JSON/bin/Debug/Listing 3-3 Validating JSON.exe -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/bin/Debug/Listing 3-3 Validating JSON.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-3 Validating JSON/bin/Debug/Listing 3-3 Validating JSON.pdb -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/obj/Debug/Listing 3-3 Validating JSON.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-3 Validating JSON/obj/Debug/Listing 3-3 Validating JSON.exe -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/obj/Debug/Listing 3-3 Validating JSON.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-3 Validating JSON/obj/Debug/Listing 3-3 Validating JSON.pdb -------------------------------------------------------------------------------- /Listing.2.4 Creating an enum/.vs/Listing.2.4 Creating an enum/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing.2.4 Creating an enum/.vs/Listing.2.4 Creating an enum/v16/.suo -------------------------------------------------------------------------------- /Listing1.15ContinuationTasks/.vs/Listing1.15ContinuationTasks/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.15ContinuationTasks/.vs/Listing1.15ContinuationTasks/v16/.suo -------------------------------------------------------------------------------- /Listing 2-23 Type conversion/bin/Debug/Listing 2-23 Type conversion.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-23 Type conversion/bin/Debug/Listing 2-23 Type conversion.exe -------------------------------------------------------------------------------- /Listing 2-23 Type conversion/bin/Debug/Listing 2-23 Type conversion.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-23 Type conversion/bin/Debug/Listing 2-23 Type conversion.pdb -------------------------------------------------------------------------------- /Listing 2-23 Type conversion/obj/Debug/Listing 2-23 Type conversion.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-23 Type conversion/obj/Debug/Listing 2-23 Type conversion.exe -------------------------------------------------------------------------------- /Listing 2-23 Type conversion/obj/Debug/Listing 2-23 Type conversion.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-23 Type conversion/obj/Debug/Listing 2-23 Type conversion.pdb -------------------------------------------------------------------------------- /Listing 2-24 Bad dynamic code/.vs/Listing 2-24 Bad dynamic code/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-24 Bad dynamic code/.vs/Listing 2-24 Bad dynamic code/v16/.suo -------------------------------------------------------------------------------- /Listing 2-24 Bad dynamic code/bin/Debug/Listing 2-24 Bad dynamic code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-24 Bad dynamic code/bin/Debug/Listing 2-24 Bad dynamic code.exe -------------------------------------------------------------------------------- /Listing 2-24 Bad dynamic code/bin/Debug/Listing 2-24 Bad dynamic code.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-24 Bad dynamic code/bin/Debug/Listing 2-24 Bad dynamic code.pdb -------------------------------------------------------------------------------- /Listing 2-24 Bad dynamic code/obj/Debug/Listing 2-24 Bad dynamic code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-24 Bad dynamic code/obj/Debug/Listing 2-24 Bad dynamic code.exe -------------------------------------------------------------------------------- /Listing 2-24 Bad dynamic code/obj/Debug/Listing 2-24 Bad dynamic code.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-24 Bad dynamic code/obj/Debug/Listing 2-24 Bad dynamic code.pdb -------------------------------------------------------------------------------- /Listing 2-28 Using a proterty/.vs/Listing 2-28 Using a proterty/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-28 Using a proterty/.vs/Listing 2-28 Using a proterty/v16/.suo -------------------------------------------------------------------------------- /Listing 2-28 Using a proterty/bin/Debug/Listing 2-28 Using a proterty.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-28 Using a proterty/bin/Debug/Listing 2-28 Using a proterty.exe -------------------------------------------------------------------------------- /Listing 2-28 Using a proterty/bin/Debug/Listing 2-28 Using a proterty.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-28 Using a proterty/bin/Debug/Listing 2-28 Using a proterty.pdb -------------------------------------------------------------------------------- /Listing 2-28 Using a proterty/obj/Debug/Listing 2-28 Using a proterty.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-28 Using a proterty/obj/Debug/Listing 2-28 Using a proterty.exe -------------------------------------------------------------------------------- /Listing 2-28 Using a proterty/obj/Debug/Listing 2-28 Using a proterty.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-28 Using a proterty/obj/Debug/Listing 2-28 Using a proterty.pdb -------------------------------------------------------------------------------- /Listing 2.11 Static variables/.vs/Listing 2.11 Static variables/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.11 Static variables/.vs/Listing 2.11 Static variables/v16/.suo -------------------------------------------------------------------------------- /Listing 2.11 Static variables/bin/Debug/Listing 2.11 Static variables.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.11 Static variables/bin/Debug/Listing 2.11 Static variables.exe -------------------------------------------------------------------------------- /Listing 2.11 Static variables/bin/Debug/Listing 2.11 Static variables.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.11 Static variables/bin/Debug/Listing 2.11 Static variables.pdb -------------------------------------------------------------------------------- /Listing 2.11 Static variables/obj/Debug/Listing 2.11 Static variables.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.11 Static variables/obj/Debug/Listing 2.11 Static variables.exe -------------------------------------------------------------------------------- /Listing 2.11 Static variables/obj/Debug/Listing 2.11 Static variables.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.11 Static variables/obj/Debug/Listing 2.11 Static variables.pdb -------------------------------------------------------------------------------- /Listing 2.13 Extension method/.vs/Listing 2.13 Extension method/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.13 Extension method/.vs/Listing 2.13 Extension method/v16/.suo -------------------------------------------------------------------------------- /Listing 2.13 Extension method/bin/Debug/Listing 2.13 Extension method.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.13 Extension method/bin/Debug/Listing 2.13 Extension method.exe -------------------------------------------------------------------------------- /Listing 2.13 Extension method/bin/Debug/Listing 2.13 Extension method.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.13 Extension method/bin/Debug/Listing 2.13 Extension method.pdb -------------------------------------------------------------------------------- /Listing 2.13 Extension method/obj/Debug/Listing 2.13 Extension method.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.13 Extension method/obj/Debug/Listing 2.13 Extension method.exe -------------------------------------------------------------------------------- /Listing 2.13 Extension method/obj/Debug/Listing 2.13 Extension method.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.13 Extension method/obj/Debug/Listing 2.13 Extension method.pdb -------------------------------------------------------------------------------- /Listing 2.14 Named parameters/.vs/Listing 2.14 Named parameters/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.14 Named parameters/.vs/Listing 2.14 Named parameters/v16/.suo -------------------------------------------------------------------------------- /Listing 2.14 Named parameters/bin/Debug/Listing 2.14 Named parameters.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.14 Named parameters/bin/Debug/Listing 2.14 Named parameters.exe -------------------------------------------------------------------------------- /Listing 2.14 Named parameters/bin/Debug/Listing 2.14 Named parameters.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.14 Named parameters/bin/Debug/Listing 2.14 Named parameters.pdb -------------------------------------------------------------------------------- /Listing 2.14 Named parameters/obj/Debug/Listing 2.14 Named parameters.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.14 Named parameters/obj/Debug/Listing 2.14 Named parameters.exe -------------------------------------------------------------------------------- /Listing 2.14 Named parameters/obj/Debug/Listing 2.14 Named parameters.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.14 Named parameters/obj/Debug/Listing 2.14 Named parameters.pdb -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/packages/Newtonsoft.Json.12.0.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-1 Creating JSON/packages/Newtonsoft.Json.12.0.2/.signature.p7s -------------------------------------------------------------------------------- /Listing.2.4 Creating an enum/bin/Debug/Listing.2.4 Creating an enum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing.2.4 Creating an enum/bin/Debug/Listing.2.4 Creating an enum.exe -------------------------------------------------------------------------------- /Listing.2.4 Creating an enum/bin/Debug/Listing.2.4 Creating an enum.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing.2.4 Creating an enum/bin/Debug/Listing.2.4 Creating an enum.pdb -------------------------------------------------------------------------------- /Listing.2.4 Creating an enum/obj/Debug/Listing.2.4 Creating an enum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing.2.4 Creating an enum/obj/Debug/Listing.2.4 Creating an enum.exe -------------------------------------------------------------------------------- /Listing.2.4 Creating an enum/obj/Debug/Listing.2.4 Creating an enum.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing.2.4 Creating an enum/obj/Debug/Listing.2.4 Creating an enum.pdb -------------------------------------------------------------------------------- /Listing1.13TaskReturningValue/.vs/Listing1.13TaskReturningValue/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.13TaskReturningValue/.vs/Listing1.13TaskReturningValue/v16/.suo -------------------------------------------------------------------------------- /Listing1.13TaskReturningValue/bin/Debug/Listing1.13TaskReturningValue.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.13TaskReturningValue/bin/Debug/Listing1.13TaskReturningValue.exe -------------------------------------------------------------------------------- /Listing1.13TaskReturningValue/bin/Debug/Listing1.13TaskReturningValue.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.13TaskReturningValue/bin/Debug/Listing1.13TaskReturningValue.pdb -------------------------------------------------------------------------------- /Listing1.13TaskReturningValue/obj/Debug/Listing1.13TaskReturningValue.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.13TaskReturningValue/obj/Debug/Listing1.13TaskReturningValue.exe -------------------------------------------------------------------------------- /Listing1.13TaskReturningValue/obj/Debug/Listing1.13TaskReturningValue.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.13TaskReturningValue/obj/Debug/Listing1.13TaskReturningValue.pdb -------------------------------------------------------------------------------- /Listing1.15ContinuationTasks/bin/Debug/Listing1.15ContinuationTasks.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.15ContinuationTasks/bin/Debug/Listing1.15ContinuationTasks.exe -------------------------------------------------------------------------------- /Listing1.15ContinuationTasks/bin/Debug/Listing1.15ContinuationTasks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.15ContinuationTasks/bin/Debug/Listing1.15ContinuationTasks.pdb -------------------------------------------------------------------------------- /Listing1.15ContinuationTasks/obj/Debug/Listing1.15ContinuationTasks.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.15ContinuationTasks/obj/Debug/Listing1.15ContinuationTasks.exe -------------------------------------------------------------------------------- /Listing1.15ContinuationTasks/obj/Debug/Listing1.15ContinuationTasks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.15ContinuationTasks/obj/Debug/Listing1.15ContinuationTasks.pdb -------------------------------------------------------------------------------- /Listing1.17AttachedChildTasks/.vs/Listing1.17AttachedChildTasks/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.17AttachedChildTasks/.vs/Listing1.17AttachedChildTasks/v16/.suo -------------------------------------------------------------------------------- /Listing1.17AttachedChildTasks/bin/Debug/Listing1.17AttachedChildTasks.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.17AttachedChildTasks/bin/Debug/Listing1.17AttachedChildTasks.exe -------------------------------------------------------------------------------- /Listing1.17AttachedChildTasks/bin/Debug/Listing1.17AttachedChildTasks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.17AttachedChildTasks/bin/Debug/Listing1.17AttachedChildTasks.pdb -------------------------------------------------------------------------------- /Listing1.17AttachedChildTasks/obj/Debug/Listing1.17AttachedChildTasks.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.17AttachedChildTasks/obj/Debug/Listing1.17AttachedChildTasks.exe -------------------------------------------------------------------------------- /Listing1.17AttachedChildTasks/obj/Debug/Listing1.17AttachedChildTasks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.17AttachedChildTasks/obj/Debug/Listing1.17AttachedChildTasks.pdb -------------------------------------------------------------------------------- /Listing3-19Machine level keys/.vs/Listing3-19Machine level keys/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-19Machine level keys/.vs/Listing3-19Machine level keys/v16/.suo -------------------------------------------------------------------------------- /Listing3-19Machine level keys/bin/Debug/Listing3-19Machine level keys.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-19Machine level keys/bin/Debug/Listing3-19Machine level keys.exe -------------------------------------------------------------------------------- /Listing3-19Machine level keys/bin/Debug/Listing3-19Machine level keys.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-19Machine level keys/bin/Debug/Listing3-19Machine level keys.pdb -------------------------------------------------------------------------------- /Listing3-19Machine level keys/obj/Debug/Listing3-19Machine level keys.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-19Machine level keys/obj/Debug/Listing3-19Machine level keys.exe -------------------------------------------------------------------------------- /Listing3-19Machine level keys/obj/Debug/Listing3-19Machine level keys.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-19Machine level keys/obj/Debug/Listing3-19Machine level keys.pdb -------------------------------------------------------------------------------- /Listing3-23SHA2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-23SHA2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing3-32Hashing/.vs/Listing3-32Hashing/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-32Hashing/.vs/Listing3-32Hashing/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 2-19 Method overriding/.vs/Listing 2-19 Method overriding/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-19 Method overriding/.vs/Listing 2-19 Method overriding/v16/.suo -------------------------------------------------------------------------------- /Listing 2-19 Method overriding/bin/Debug/Listing 2-19 Method overriding.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-19 Method overriding/bin/Debug/Listing 2-19 Method overriding.exe -------------------------------------------------------------------------------- /Listing 2-19 Method overriding/bin/Debug/Listing 2-19 Method overriding.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-19 Method overriding/bin/Debug/Listing 2-19 Method overriding.pdb -------------------------------------------------------------------------------- /Listing 2-19 Method overriding/obj/Debug/Listing 2-19 Method overriding.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-19 Method overriding/obj/Debug/Listing 2-19 Method overriding.exe -------------------------------------------------------------------------------- /Listing 2-19 Method overriding/obj/Debug/Listing 2-19 Method overriding.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-19 Method overriding/obj/Debug/Listing 2-19 Method overriding.pdb -------------------------------------------------------------------------------- /Listing 2-40 Typed IComparable/.vs/Listing 2-40 Typed IComparable/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-40 Typed IComparable/.vs/Listing 2-40 Typed IComparable/v16/.suo -------------------------------------------------------------------------------- /Listing 2-40 Typed IComparable/bin/Debug/Listing 2-40 Typed IComparable.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-40 Typed IComparable/bin/Debug/Listing 2-40 Typed IComparable.exe -------------------------------------------------------------------------------- /Listing 2-40 Typed IComparable/bin/Debug/Listing 2-40 Typed IComparable.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-40 Typed IComparable/bin/Debug/Listing 2-40 Typed IComparable.pdb -------------------------------------------------------------------------------- /Listing 2-40 Typed IComparable/obj/Debug/Listing 2-40 Typed IComparable.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-40 Typed IComparable/obj/Debug/Listing 2-40 Typed IComparable.exe -------------------------------------------------------------------------------- /Listing 2-40 Typed IComparable/obj/Debug/Listing 2-40 Typed IComparable.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-40 Typed IComparable/obj/Debug/Listing 2-40 Typed IComparable.pdb -------------------------------------------------------------------------------- /Listing 2-41 Get an enumerator/.vs/Listing 2-41 Get an enumerator/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-41 Get an enumerator/.vs/Listing 2-41 Get an enumerator/v16/.suo -------------------------------------------------------------------------------- /Listing 2-41 Get an enumerator/bin/Debug/Listing 2-41 Get an enumerator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-41 Get an enumerator/bin/Debug/Listing 2-41 Get an enumerator.exe -------------------------------------------------------------------------------- /Listing 2-41 Get an enumerator/bin/Debug/Listing 2-41 Get an enumerator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-41 Get an enumerator/bin/Debug/Listing 2-41 Get an enumerator.pdb -------------------------------------------------------------------------------- /Listing 2-41 Get an enumerator/obj/Debug/Listing 2-41 Get an enumerator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-41 Get an enumerator/obj/Debug/Listing 2-41 Get an enumerator.exe -------------------------------------------------------------------------------- /Listing 2-41 Get an enumerator/obj/Debug/Listing 2-41 Get an enumerator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-41 Get an enumerator/obj/Debug/Listing 2-41 Get an enumerator.pdb -------------------------------------------------------------------------------- /Listing 2-45 Using IDisposable/.vs/Listing 2-45 Using IDisposable/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-45 Using IDisposable/.vs/Listing 2-45 Using IDisposable/v16/.suo -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/packages/Newtonsoft.Json.12.0.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-3 Validating JSON/packages/Newtonsoft.Json.12.0.2/.signature.p7s -------------------------------------------------------------------------------- /Listing1.12RunATask/.vs/Listing1.12RunATask/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.12RunATask/.vs/Listing1.12RunATask/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing1.16ContinuationOptions/.vs/Listing1.16ContinuationOptions/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.16ContinuationOptions/.vs/Listing1.16ContinuationOptions/v16/.suo -------------------------------------------------------------------------------- /Listing1.16ContinuationOptions/bin/Debug/Listing1.16ContinuationOptions.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.16ContinuationOptions/bin/Debug/Listing1.16ContinuationOptions.exe -------------------------------------------------------------------------------- /Listing1.16ContinuationOptions/bin/Debug/Listing1.16ContinuationOptions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.16ContinuationOptions/bin/Debug/Listing1.16ContinuationOptions.pdb -------------------------------------------------------------------------------- /Listing1.16ContinuationOptions/obj/Debug/Listing1.16ContinuationOptions.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.16ContinuationOptions/obj/Debug/Listing1.16ContinuationOptions.exe -------------------------------------------------------------------------------- /Listing1.16ContinuationOptions/obj/Debug/Listing1.16ContinuationOptions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.16ContinuationOptions/obj/Debug/Listing1.16ContinuationOptions.pdb -------------------------------------------------------------------------------- /Listing2.6 Using generic types/.vs/Listing2.6 Using generic types/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.6 Using generic types/.vs/Listing2.6 Using generic types/v16/.suo -------------------------------------------------------------------------------- /Listing2.6 Using generic types/bin/Debug/Listing2.6 Using generic types.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.6 Using generic types/bin/Debug/Listing2.6 Using generic types.exe -------------------------------------------------------------------------------- /Listing2.6 Using generic types/bin/Debug/Listing2.6 Using generic types.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.6 Using generic types/bin/Debug/Listing2.6 Using generic types.pdb -------------------------------------------------------------------------------- /Listing2.6 Using generic types/obj/Debug/Listing2.6 Using generic types.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.6 Using generic types/obj/Debug/Listing2.6 Using generic types.exe -------------------------------------------------------------------------------- /Listing2.6 Using generic types/obj/Debug/Listing2.6 Using generic types.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.6 Using generic types/obj/Debug/Listing2.6 Using generic types.pdb -------------------------------------------------------------------------------- /Listing3-17 RSA key management/.vs/Listing3-17 RSA key management/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-17 RSA key management/.vs/Listing3-17 RSA key management/v16/.suo -------------------------------------------------------------------------------- /Listing3-17 RSA key management/bin/Debug/Listing3-17 RSA key management.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-17 RSA key management/bin/Debug/Listing3-17 RSA key management.exe -------------------------------------------------------------------------------- /Listing3-17 RSA key management/bin/Debug/Listing3-17 RSA key management.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-17 RSA key management/bin/Debug/Listing3-17 RSA key management.pdb -------------------------------------------------------------------------------- /Listing3-17 RSA key management/obj/Debug/Listing3-17 RSA key management.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-17 RSA key management/obj/Debug/Listing3-17 RSA key management.exe -------------------------------------------------------------------------------- /Listing3-17 RSA key management/obj/Debug/Listing3-17 RSA key management.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-17 RSA key management/obj/Debug/Listing3-17 RSA key management.pdb -------------------------------------------------------------------------------- /Listing3-32Hashing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-32Hashing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 1.9UsingTheForAllMethod/.vs/Listing 1.9UsingTheForAllMethod/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 1.9UsingTheForAllMethod/.vs/Listing 1.9UsingTheForAllMethod/v16/.suo -------------------------------------------------------------------------------- /Listing 1.9UsingTheForAllMethod/bin/Debug/Listing 1.9UsingTheForAllMethod.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 1.9UsingTheForAllMethod/bin/Debug/Listing 1.9UsingTheForAllMethod.exe -------------------------------------------------------------------------------- /Listing 1.9UsingTheForAllMethod/bin/Debug/Listing 1.9UsingTheForAllMethod.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 1.9UsingTheForAllMethod/bin/Debug/Listing 1.9UsingTheForAllMethod.pdb -------------------------------------------------------------------------------- /Listing 1.9UsingTheForAllMethod/obj/Debug/Listing 1.9UsingTheForAllMethod.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 1.9UsingTheForAllMethod/obj/Debug/Listing 1.9UsingTheForAllMethod.exe -------------------------------------------------------------------------------- /Listing 1.9UsingTheForAllMethod/obj/Debug/Listing 1.9UsingTheForAllMethod.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 1.9UsingTheForAllMethod/obj/Debug/Listing 1.9UsingTheForAllMethod.pdb -------------------------------------------------------------------------------- /Listing 2-17 Indexing on strings/.vs/Listing 2-17 Indexing on strings/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-17 Indexing on strings/.vs/Listing 2-17 Indexing on strings/v16/.suo -------------------------------------------------------------------------------- /Listing 2-21 Boxing and unboxing/.vs/Listing 2-21 Boxing and unboxing/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-21 Boxing and unboxing/.vs/Listing 2-21 Boxing and unboxing/v16/.suo -------------------------------------------------------------------------------- /Listing 2-27 Public data members/.vs/Listing 2-27 Public data members/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-27 Public data members/.vs/Listing 2-27 Public data members/v16/.suo -------------------------------------------------------------------------------- /Listing 2-32 Printing interface/.vs/Listing 2-32 Printing interface/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-32 Printing interface/.vs/Listing 2-32 Printing interface/v16/.suo -------------------------------------------------------------------------------- /Listing 2-32 Printing interface/bin/Debug/Listing 2-32 Printing interface.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-32 Printing interface/bin/Debug/Listing 2-32 Printing interface.exe -------------------------------------------------------------------------------- /Listing 2-32 Printing interface/bin/Debug/Listing 2-32 Printing interface.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-32 Printing interface/bin/Debug/Listing 2-32 Printing interface.pdb -------------------------------------------------------------------------------- /Listing 2-32 Printing interface/obj/Debug/Listing 2-32 Printing interface.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-32 Printing interface/obj/Debug/Listing 2-32 Printing interface.exe -------------------------------------------------------------------------------- /Listing 2-32 Printing interface/obj/Debug/Listing 2-32 Printing interface.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-32 Printing interface/obj/Debug/Listing 2-32 Printing interface.pdb -------------------------------------------------------------------------------- /Listing 2.10 Static constructors/.vs/Listing 2.10 Static constructors/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.10 Static constructors/.vs/Listing 2.10 Static constructors/v16/.suo -------------------------------------------------------------------------------- /Listing 2.16 Indexed properties/.vs/Listing 2.16 Indexed properties/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.16 Indexed properties/.vs/Listing 2.16 Indexed properties/v16/.suo -------------------------------------------------------------------------------- /Listing 2.16 Indexed properties/bin/Debug/Listing 2.16 Indexed properties.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.16 Indexed properties/bin/Debug/Listing 2.16 Indexed properties.exe -------------------------------------------------------------------------------- /Listing 2.16 Indexed properties/bin/Debug/Listing 2.16 Indexed properties.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.16 Indexed properties/bin/Debug/Listing 2.16 Indexed properties.pdb -------------------------------------------------------------------------------- /Listing 2.16 Indexed properties/obj/Debug/Listing 2.16 Indexed properties.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.16 Indexed properties/obj/Debug/Listing 2.16 Indexed properties.exe -------------------------------------------------------------------------------- /Listing 2.16 Indexed properties/obj/Debug/Listing 2.16 Indexed properties.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.16 Indexed properties/obj/Debug/Listing 2.16 Indexed properties.pdb -------------------------------------------------------------------------------- /Listing 2.9 Calling constructors/.vs/Listing 2.9 Calling constructors/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.9 Calling constructors/.vs/Listing 2.9 Calling constructors/v16/.suo -------------------------------------------------------------------------------- /Listing1.11CreateTask/.vs/Listing1.11CreateTask/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.11CreateTask/.vs/Listing1.11CreateTask/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing1.11CreateTask/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.11CreateTask/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing1.12RunATask/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.12RunATask/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing1.3ParallelFor/.vs/Listing1.3ParallelFor/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.3ParallelFor/.vs/Listing1.3ParallelFor/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing1.3ParallelFor/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.3ParallelFor/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing2.3 Creating a structure/.vs/Listing2.3 Creating a structure/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.3 Creating a structure/.vs/Listing2.3 Creating a structure/v16/.suo -------------------------------------------------------------------------------- /Listing2.3 Creating a structure/bin/Debug/Listing2.3 Creating a structure.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.3 Creating a structure/bin/Debug/Listing2.3 Creating a structure.exe -------------------------------------------------------------------------------- /Listing2.3 Creating a structure/bin/Debug/Listing2.3 Creating a structure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.3 Creating a structure/bin/Debug/Listing2.3 Creating a structure.pdb -------------------------------------------------------------------------------- /Listing2.3 Creating a structure/obj/Debug/Listing2.3 Creating a structure.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.3 Creating a structure/obj/Debug/Listing2.3 Creating a structure.exe -------------------------------------------------------------------------------- /Listing2.3 Creating a structure/obj/Debug/Listing2.3 Creating a structure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.3 Creating a structure/obj/Debug/Listing2.3 Creating a structure.pdb -------------------------------------------------------------------------------- /Listing2.5 Creating a reference/.vs/Listing2.5 Creating a reference/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.5 Creating a reference/.vs/Listing2.5 Creating a reference/v16/.suo -------------------------------------------------------------------------------- /Listing2.5 Creating a reference/bin/Debug/Listing2.5 Creating a reference.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.5 Creating a reference/bin/Debug/Listing2.5 Creating a reference.exe -------------------------------------------------------------------------------- /Listing2.5 Creating a reference/bin/Debug/Listing2.5 Creating a reference.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.5 Creating a reference/bin/Debug/Listing2.5 Creating a reference.pdb -------------------------------------------------------------------------------- /Listing2.5 Creating a reference/obj/Debug/Listing2.5 Creating a reference.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.5 Creating a reference/obj/Debug/Listing2.5 Creating a reference.exe -------------------------------------------------------------------------------- /Listing2.5 Creating a reference/obj/Debug/Listing2.5 Creating a reference.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.5 Creating a reference/obj/Debug/Listing2.5 Creating a reference.pdb -------------------------------------------------------------------------------- /Listing3-21 Checksums/.vs/Listing3-21 Checksums/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-21 Checksums/.vs/Listing3-21 Checksums/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing3-21 Checksums/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-21 Checksums/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing3-23SHA2/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-17 Indexing on strings/bin/Debug/Listing 2-17 Indexing on strings.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-17 Indexing on strings/bin/Debug/Listing 2-17 Indexing on strings.exe -------------------------------------------------------------------------------- /Listing 2-17 Indexing on strings/bin/Debug/Listing 2-17 Indexing on strings.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-17 Indexing on strings/bin/Debug/Listing 2-17 Indexing on strings.pdb -------------------------------------------------------------------------------- /Listing 2-17 Indexing on strings/obj/Debug/Listing 2-17 Indexing on strings.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-17 Indexing on strings/obj/Debug/Listing 2-17 Indexing on strings.exe -------------------------------------------------------------------------------- /Listing 2-17 Indexing on strings/obj/Debug/Listing 2-17 Indexing on strings.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-17 Indexing on strings/obj/Debug/Listing 2-17 Indexing on strings.pdb -------------------------------------------------------------------------------- /Listing 2-20 Using base/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-20 Using base/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-21 Boxing and unboxing/bin/Debug/Listing 2-21 Boxing and unboxing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-21 Boxing and unboxing/bin/Debug/Listing 2-21 Boxing and unboxing.exe -------------------------------------------------------------------------------- /Listing 2-21 Boxing and unboxing/bin/Debug/Listing 2-21 Boxing and unboxing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-21 Boxing and unboxing/bin/Debug/Listing 2-21 Boxing and unboxing.pdb -------------------------------------------------------------------------------- /Listing 2-21 Boxing and unboxing/obj/Debug/Listing 2-21 Boxing and unboxing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-21 Boxing and unboxing/obj/Debug/Listing 2-21 Boxing and unboxing.exe -------------------------------------------------------------------------------- /Listing 2-21 Boxing and unboxing/obj/Debug/Listing 2-21 Boxing and unboxing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-21 Boxing and unboxing/obj/Debug/Listing 2-21 Boxing and unboxing.pdb -------------------------------------------------------------------------------- /Listing 2-33 IPrintable interface/.vs/Listing 2-33 IPrintable interface/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-33 IPrintable interface/.vs/Listing 2-33 IPrintable interface/v16/.suo -------------------------------------------------------------------------------- /Listing 2-44 Using yeld/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-44 Using yeld/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-53 Investigation a type/.vs/Listing 2-53 Investigation a type/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-53 Investigation a type/.vs/Listing 2-53 Investigation a type/v16/.suo -------------------------------------------------------------------------------- /Listing 2.10 Static constructors/bin/Debug/Listing 2.10 Static constructors.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.10 Static constructors/bin/Debug/Listing 2.10 Static constructors.exe -------------------------------------------------------------------------------- /Listing 2.10 Static constructors/bin/Debug/Listing 2.10 Static constructors.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.10 Static constructors/bin/Debug/Listing 2.10 Static constructors.pdb -------------------------------------------------------------------------------- /Listing 2.10 Static constructors/obj/Debug/Listing 2.10 Static constructors.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.10 Static constructors/obj/Debug/Listing 2.10 Static constructors.exe -------------------------------------------------------------------------------- /Listing 2.10 Static constructors/obj/Debug/Listing 2.10 Static constructors.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.10 Static constructors/obj/Debug/Listing 2.10 Static constructors.pdb -------------------------------------------------------------------------------- /Listing 2.9 Calling constructors/bin/Debug/Listing 2.9 Calling constructors.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.9 Calling constructors/bin/Debug/Listing 2.9 Calling constructors.exe -------------------------------------------------------------------------------- /Listing 2.9 Calling constructors/bin/Debug/Listing 2.9 Calling constructors.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.9 Calling constructors/bin/Debug/Listing 2.9 Calling constructors.pdb -------------------------------------------------------------------------------- /Listing 2.9 Calling constructors/obj/Debug/Listing 2.9 Calling constructors.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.9 Calling constructors/obj/Debug/Listing 2.9 Calling constructors.exe -------------------------------------------------------------------------------- /Listing 2.9 Calling constructors/obj/Debug/Listing 2.9 Calling constructors.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.9 Calling constructors/obj/Debug/Listing 2.9 Calling constructors.pdb -------------------------------------------------------------------------------- /Listing1.11CreateTask/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing1.12RunATask/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing1.12RunATask/obj/Debug/Listing1.12RunATask.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.12RunATask/obj/Debug/Listing1.12RunATask.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing1.14TaskWaitall/.vs/Listing1.14TaskWaitall/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.14TaskWaitall/.vs/Listing1.14TaskWaitall/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing1.14TaskWaitall/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.14TaskWaitall/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing1.3ParallelFor/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing1.4ManagingParallelForLoop/.vs/Listing1.4ManagingParallelForLoop/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.4ManagingParallelForLoop/.vs/Listing1.4ManagingParallelForLoop/v16/.suo -------------------------------------------------------------------------------- /Listing1.5ParallelLINQ/.vs/Listing1.5ParallelLINQ/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.5ParallelLINQ/.vs/Listing1.5ParallelLINQ/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing1.5ParallelLINQ/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.5ParallelLINQ/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing3-21 Checksums/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing3-32Hashing/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-20 Using base/.vs/Listing 2-20 Using base/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-20 Using base/.vs/Listing 2-20 Using base/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 2-20 Using base/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-42 Using foreach/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-42 Using foreach/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-42 Using foreach/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-44 Using yeld/.vs/Listing 2-44 Using yeld/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-44 Using yeld/.vs/Listing 2-44 Using yeld/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 2-44 Using yeld/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-53 Investigation a type/bin/Debug/Listing 2-53 Investigation a type.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-53 Investigation a type/bin/Debug/Listing 2-53 Investigation a type.exe -------------------------------------------------------------------------------- /Listing 2-53 Investigation a type/bin/Debug/Listing 2-53 Investigation a type.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-53 Investigation a type/bin/Debug/Listing 2-53 Investigation a type.pdb -------------------------------------------------------------------------------- /Listing 2-53 Investigation a type/obj/Debug/Listing 2-53 Investigation a type.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-53 Investigation a type/obj/Debug/Listing 2-53 Investigation a type.exe -------------------------------------------------------------------------------- /Listing 2-53 Investigation a type/obj/Debug/Listing 2-53 Investigation a type.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-53 Investigation a type/obj/Debug/Listing 2-53 Investigation a type.pdb -------------------------------------------------------------------------------- /Listing 2.12 Simple Method/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2.12 Simple Method/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.12 Simple Method/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2.7 Constructors/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2.7 Constructors/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.7 Constructors/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-1 Creating JSON/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 3-2 Creating XML/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 3-2 Creating XML/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-2 Creating XML/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing1.11CreateTask/obj/Debug/Listing1.11CreateTask.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.11CreateTask/obj/Debug/Listing1.11CreateTask.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing1.14TaskWaitall/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing1.1Parallel.Invoke/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing1.1Parallel.Invoke/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.1Parallel.Invoke/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing1.2Parallel.ForEach/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing1.2Parallel.ForEach/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.2Parallel.ForEach/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing1.3ParallelFor/obj/Debug/Listing1.3ParallelFor.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.3ParallelFor/obj/Debug/Listing1.3ParallelFor.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing1.4ManagingParallelForLoop/bin/Debug/Listing1.4ManagingParallelForLoop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.4ManagingParallelForLoop/bin/Debug/Listing1.4ManagingParallelForLoop.exe -------------------------------------------------------------------------------- /Listing1.4ManagingParallelForLoop/bin/Debug/Listing1.4ManagingParallelForLoop.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.4ManagingParallelForLoop/bin/Debug/Listing1.4ManagingParallelForLoop.pdb -------------------------------------------------------------------------------- /Listing1.4ManagingParallelForLoop/obj/Debug/Listing1.4ManagingParallelForLoop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.4ManagingParallelForLoop/obj/Debug/Listing1.4ManagingParallelForLoop.exe -------------------------------------------------------------------------------- /Listing1.4ManagingParallelForLoop/obj/Debug/Listing1.4ManagingParallelForLoop.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.4ManagingParallelForLoop/obj/Debug/Listing1.4ManagingParallelForLoop.pdb -------------------------------------------------------------------------------- /Listing1.5ParallelLINQ/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing1.6InformingParallelization/.vs/Listing1.6InformingParallelization/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.6InformingParallelization/.vs/Listing1.6InformingParallelization/v16/.suo -------------------------------------------------------------------------------- /Listing1.6InformingParallelization/bin/Debug/Listing1.6InformingParallelization.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.6InformingParallelization/bin/Debug/Listing1.6InformingParallelization.exe -------------------------------------------------------------------------------- /Listing1.6InformingParallelization/bin/Debug/Listing1.6InformingParallelization.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.6InformingParallelization/bin/Debug/Listing1.6InformingParallelization.pdb -------------------------------------------------------------------------------- /Listing1.6InformingParallelization/obj/Debug/Listing1.6InformingParallelization.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.6InformingParallelization/obj/Debug/Listing1.6InformingParallelization.exe -------------------------------------------------------------------------------- /Listing1.6InformingParallelization/obj/Debug/Listing1.6InformingParallelization.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.6InformingParallelization/obj/Debug/Listing1.6InformingParallelization.pdb -------------------------------------------------------------------------------- /Listing3-11 Using TryParse/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing3-11 Using TryParse/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-11 Using TryParse/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing3-12Using Convert/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing3-12Using Convert/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-12Using Convert/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing3-14AES encryption/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing3-14AES encryption/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-14AES encryption/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing3-15AES decryption/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing3-15AES decryption/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-15AES decryption/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing3-16RSA encryption/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing3-16RSA encryption/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-16RSA encryption/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing3-21 Checksums/obj/Debug/Listing3-21 Checksums.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-21 Checksums/obj/Debug/Listing3-21 Checksums.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing3-5 Copy construtor/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing3-5 Copy construtor/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-5 Copy construtor/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 1.9UsingTheForAllMethod/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-19 Method overriding/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-23 Type conversion/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-23 Type conversion/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-23 Type conversion/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-24 Bad dynamic code/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-26 interacting with excel/.vs/Listing 2-26 interacting with excel/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-26 interacting with excel/.vs/Listing 2-26 interacting with excel/v16/.suo -------------------------------------------------------------------------------- /Listing 2-26 interacting with excel/bin/Debug/Listing 2-26 interacting with excel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-26 interacting with excel/bin/Debug/Listing 2-26 interacting with excel.exe -------------------------------------------------------------------------------- /Listing 2-26 interacting with excel/bin/Debug/Listing 2-26 interacting with excel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-26 interacting with excel/bin/Debug/Listing 2-26 interacting with excel.pdb -------------------------------------------------------------------------------- /Listing 2-26 interacting with excel/obj/Debug/Listing 2-26 interacting with excel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-26 interacting with excel/obj/Debug/Listing 2-26 interacting with excel.exe -------------------------------------------------------------------------------- /Listing 2-26 interacting with excel/obj/Debug/Listing 2-26 interacting with excel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-26 interacting with excel/obj/Debug/Listing 2-26 interacting with excel.pdb -------------------------------------------------------------------------------- /Listing 2-28 Using a proterty/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-31 Protected class/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-31 Protected class/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-31 Protected class/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-32 Printing interface/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-40 Typed IComparable/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-41 Get an enumerator/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-45 Using IDisposable/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-54 Reflection method call/.vs/Listing 2-54 Reflection method call/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-54 Reflection method call/.vs/Listing 2-54 Reflection method call/v16/.suo -------------------------------------------------------------------------------- /Listing 2-54 Reflection method call/bin/Debug/Listing 2-54 Reflection method call.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-54 Reflection method call/bin/Debug/Listing 2-54 Reflection method call.exe -------------------------------------------------------------------------------- /Listing 2-54 Reflection method call/bin/Debug/Listing 2-54 Reflection method call.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-54 Reflection method call/bin/Debug/Listing 2-54 Reflection method call.pdb -------------------------------------------------------------------------------- /Listing 2-54 Reflection method call/obj/Debug/Listing 2-54 Reflection method call.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-54 Reflection method call/obj/Debug/Listing 2-54 Reflection method call.exe -------------------------------------------------------------------------------- /Listing 2-54 Reflection method call/obj/Debug/Listing 2-54 Reflection method call.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-54 Reflection method call/obj/Debug/Listing 2-54 Reflection method call.pdb -------------------------------------------------------------------------------- /Listing 2.11 Static variables/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2.13 Extension method/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2.14 Named parameters/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2.16 Indexed properties/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2.7 Constructors/.vs/Listing 2.7 Constructors/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.7 Constructors/.vs/Listing 2.7 Constructors/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 3-2 Creating XML/.vs/Listing 3-2 Creating XML/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-2 Creating XML/.vs/Listing 3-2 Creating XML/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-3 Validating JSON/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing.2.4 Creating an enum/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing.2.4 Creating an enum/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing.2.4 Creating an enum/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing1.10ExceptionsInPLINQQueries/.vs/Listing1.10ExceptionsInPLINQQueries/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.10ExceptionsInPLINQQueries/.vs/Listing1.10ExceptionsInPLINQQueries/v16/.suo -------------------------------------------------------------------------------- /Listing1.10ExceptionsInPLINQQueries/bin/Debug/Listing1.10ExceptionsInPLINQQueries.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.10ExceptionsInPLINQQueries/bin/Debug/Listing1.10ExceptionsInPLINQQueries.exe -------------------------------------------------------------------------------- /Listing1.10ExceptionsInPLINQQueries/bin/Debug/Listing1.10ExceptionsInPLINQQueries.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.10ExceptionsInPLINQQueries/bin/Debug/Listing1.10ExceptionsInPLINQQueries.pdb -------------------------------------------------------------------------------- /Listing1.10ExceptionsInPLINQQueries/obj/Debug/Listing1.10ExceptionsInPLINQQueries.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.10ExceptionsInPLINQQueries/obj/Debug/Listing1.10ExceptionsInPLINQQueries.exe -------------------------------------------------------------------------------- /Listing1.10ExceptionsInPLINQQueries/obj/Debug/Listing1.10ExceptionsInPLINQQueries.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.10ExceptionsInPLINQQueries/obj/Debug/Listing1.10ExceptionsInPLINQQueries.pdb -------------------------------------------------------------------------------- /Listing1.13TaskReturningValue/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing1.14TaskWaitall/obj/Debug/Listing1.14TaskWaitall.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.14TaskWaitall/obj/Debug/Listing1.14TaskWaitall.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing1.15ContinuationTasks/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing1.15ContinuationTasks/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.15ContinuationTasks/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing1.16ContinuationOptions/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing1.17AttachedChildTasks/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing1.5ParallelLINQ/obj/Debug/Listing1.5ParallelLINQ.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.5ParallelLINQ/obj/Debug/Listing1.5ParallelLINQ.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing2.1Value and Reference types/.vs/Listing2.1Value and Reference types/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.1Value and Reference types/.vs/Listing2.1Value and Reference types/v16/.suo -------------------------------------------------------------------------------- /Listing2.1Value and Reference types/bin/Debug/Listing2.1Value and Reference types.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.1Value and Reference types/bin/Debug/Listing2.1Value and Reference types.exe -------------------------------------------------------------------------------- /Listing2.1Value and Reference types/bin/Debug/Listing2.1Value and Reference types.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.1Value and Reference types/bin/Debug/Listing2.1Value and Reference types.pdb -------------------------------------------------------------------------------- /Listing2.1Value and Reference types/obj/Debug/Listing2.1Value and Reference types.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.1Value and Reference types/obj/Debug/Listing2.1Value and Reference types.exe -------------------------------------------------------------------------------- /Listing2.1Value and Reference types/obj/Debug/Listing2.1Value and Reference types.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.1Value and Reference types/obj/Debug/Listing2.1Value and Reference types.pdb -------------------------------------------------------------------------------- /Listing2.3 Creating a structure/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing2.5 Creating a reference/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing2.6 Using generic types/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing3-12Using Convert/.vs/Listing3-12Using Convert/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-12Using Convert/.vs/Listing3-12Using Convert/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing3-17 RSA key management/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing3-19Machine level keys/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 1.9UsingTheForAllMethod/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 1.9UsingTheForAllMethod/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-17 Indexing on strings/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-19 Method overriding/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-19 Method overriding/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-21 Boxing and unboxing/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-24 Bad dynamic code/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-24 Bad dynamic code/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-25 Using dynamic variables/.vs/Listing 2-25 Using dynamic variables/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-25 Using dynamic variables/.vs/Listing 2-25 Using dynamic variables/v16/.suo -------------------------------------------------------------------------------- /Listing 2-25 Using dynamic variables/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-25 Using dynamic variables/bin/Debug/Listing 2-25 Using dynamic variables.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-25 Using dynamic variables/bin/Debug/Listing 2-25 Using dynamic variables.exe -------------------------------------------------------------------------------- /Listing 2-25 Using dynamic variables/bin/Debug/Listing 2-25 Using dynamic variables.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-25 Using dynamic variables/bin/Debug/Listing 2-25 Using dynamic variables.pdb -------------------------------------------------------------------------------- /Listing 2-25 Using dynamic variables/obj/Debug/Listing 2-25 Using dynamic variables.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-25 Using dynamic variables/obj/Debug/Listing 2-25 Using dynamic variables.exe -------------------------------------------------------------------------------- /Listing 2-25 Using dynamic variables/obj/Debug/Listing 2-25 Using dynamic variables.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-25 Using dynamic variables/obj/Debug/Listing 2-25 Using dynamic variables.pdb -------------------------------------------------------------------------------- /Listing 2-26 interacting with excel/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-27 Public data members/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-28 Using a proterty/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-28 Using a proterty/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-32 Printing interface/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-32 Printing interface/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-33 IPrintable interface/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-40 Typed IComparable/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-40 Typed IComparable/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-41 Get an enumerator/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-41 Get an enumerator/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-42 Using foreach/.vs/Listing 2-42 Using foreach/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-42 Using foreach/.vs/Listing 2-42 Using foreach/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 2-44 Using yeld/obj/Debug/Listing 2-44 Using yeld.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-44 Using yeld/obj/Debug/Listing 2-44 Using yeld.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing 2-45 Using IDisposable/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-45 Using IDisposable/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-53 Investigation a type/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-54 Reflection method call/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2.10 Static constructors/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2.11 Static variables/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.11 Static variables/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2.12 Simple Method/.vs/Listing 2.12 Simple Method/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.12 Simple Method/.vs/Listing 2.12 Simple Method/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 2.13 Extension method/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.13 Extension method/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2.14 Named parameters/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.14 Named parameters/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2.16 Indexed properties/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.16 Indexed properties/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2.8 Overloaded constructors/.vs/Listing 2.8 Overloaded constructors/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.8 Overloaded constructors/.vs/Listing 2.8 Overloaded constructors/v16/.suo -------------------------------------------------------------------------------- /Listing 2.8 Overloaded constructors/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2.9 Calling constructors/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/.vs/Listing 3-1 Creating JSON/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-1 Creating JSON/.vs/Listing 3-1 Creating JSON/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/packages/Newtonsoft.Json.12.0.2/Newtonsoft.Json.12.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-1 Creating JSON/packages/Newtonsoft.Json.12.0.2/Newtonsoft.Json.12.0.2.nupkg -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/packages/Newtonsoft.Json.12.0.2/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-1 Creating JSON/packages/Newtonsoft.Json.12.0.2/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/packages/Newtonsoft.Json.12.0.2/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-1 Creating JSON/packages/Newtonsoft.Json.12.0.2/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/packages/Newtonsoft.Json.12.0.2/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-1 Creating JSON/packages/Newtonsoft.Json.12.0.2/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/packages/Newtonsoft.Json.12.0.2/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-1 Creating JSON/packages/Newtonsoft.Json.12.0.2/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/packages/Newtonsoft.Json.12.0.2/Newtonsoft.Json.12.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-3 Validating JSON/packages/Newtonsoft.Json.12.0.2/Newtonsoft.Json.12.0.2.nupkg -------------------------------------------------------------------------------- /Listing1.10ExceptionsInPLINQQueries/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing1.13TaskReturningValue/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.13TaskReturningValue/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing1.16ContinuationOptions/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.16ContinuationOptions/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing1.17AttachedChildTasks/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.17AttachedChildTasks/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing1.1Parallel.Invoke/.vs/Listing1.1Parallel.Invoke/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.1Parallel.Invoke/.vs/Listing1.1Parallel.Invoke/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing1.2Parallel.ForEach/.vs/Listing1.2Parallel.ForEach/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.2Parallel.ForEach/.vs/Listing1.2Parallel.ForEach/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing1.4ManagingParallelForLoop/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing1.6InformingParallelization/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing2.1Value and Reference types/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing2.3 Creating a structure/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.3 Creating a structure/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing2.5 Creating a reference/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.5 Creating a reference/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing2.6 Using generic types/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.6 Using generic types/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing3-11 Using TryParse/.vs/Listing3-11 Using TryParse/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-11 Using TryParse/.vs/Listing3-11 Using TryParse/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing3-14AES encryption/.vs/Listing3-14AES encryption/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-14AES encryption/.vs/Listing3-14AES encryption/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing3-15AES decryption/.vs/Listing3-15AES decryption/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-15AES decryption/.vs/Listing3-15AES decryption/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing3-16RSA encryption/.vs/Listing3-16RSA encryption/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-16RSA encryption/.vs/Listing3-16RSA encryption/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing3-17 RSA key management/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-17 RSA key management/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing3-19Machine level keys/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-19Machine level keys/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing3-5 Copy construtor/.vs/Listing3-5 Copy construtor/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-5 Copy construtor/.vs/Listing3-5 Copy construtor/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 2-17 Indexing on strings/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-17 Indexing on strings/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-21 Boxing and unboxing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-21 Boxing and unboxing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-27 Public data members/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-27 Public data members/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-29 Creating accessor methods/.vs/Listing 2-29 Creating accessor methods/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-29 Creating accessor methods/.vs/Listing 2-29 Creating accessor methods/v16/.suo -------------------------------------------------------------------------------- /Listing 2-29 Creating accessor methods/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-33 IPrintable interface/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-33 IPrintable interface/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-43 Creating an enumerable type/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-46 The serializable attribute/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-53 Investigation a type/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-53 Investigation a type/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2.10 Static constructors/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.10 Static constructors/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2.7 Constructors/obj/Debug/Listing 2.7 Constructors.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.7 Constructors/obj/Debug/Listing 2.7 Constructors.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing 2.9 Calling constructors/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.9 Calling constructors/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 3-2 Creating XML/obj/Debug/Listing 3-2 Creating XML.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-2 Creating XML/obj/Debug/Listing 3-2 Creating XML.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/.vs/Listing 3-3 Validating JSON/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-3 Validating JSON/.vs/Listing 3-3 Validating JSON/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/packages/Newtonsoft.Json.12.0.2/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-3 Validating JSON/packages/Newtonsoft.Json.12.0.2/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/packages/Newtonsoft.Json.12.0.2/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-3 Validating JSON/packages/Newtonsoft.Json.12.0.2/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/packages/Newtonsoft.Json.12.0.2/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-3 Validating JSON/packages/Newtonsoft.Json.12.0.2/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/packages/Newtonsoft.Json.12.0.2/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-3 Validating JSON/packages/Newtonsoft.Json.12.0.2/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Listing1.4ManagingParallelForLoop/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.4ManagingParallelForLoop/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing3-12Using Convert/obj/Debug/Listing3-12Using Convert.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-12Using Convert/obj/Debug/Listing3-12Using Convert.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing3-23SHA2/bin/Debug/Listing3-23SHA2.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 2-23 Type conversion/.vs/Listing 2-23 Type conversion/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-23 Type conversion/.vs/Listing 2-23 Type conversion/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 2-25 Using dynamic variables/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-25 Using dynamic variables/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-26 interacting with excel/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-26 interacting with excel/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-29 Creating accessor methods/bin/Debug/Listing 2-29 Creating accessor methods.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-29 Creating accessor methods/bin/Debug/Listing 2-29 Creating accessor methods.exe -------------------------------------------------------------------------------- /Listing 2-29 Creating accessor methods/bin/Debug/Listing 2-29 Creating accessor methods.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-29 Creating accessor methods/bin/Debug/Listing 2-29 Creating accessor methods.pdb -------------------------------------------------------------------------------- /Listing 2-29 Creating accessor methods/obj/Debug/Listing 2-29 Creating accessor methods.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-29 Creating accessor methods/obj/Debug/Listing 2-29 Creating accessor methods.exe -------------------------------------------------------------------------------- /Listing 2-29 Creating accessor methods/obj/Debug/Listing 2-29 Creating accessor methods.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-29 Creating accessor methods/obj/Debug/Listing 2-29 Creating accessor methods.pdb -------------------------------------------------------------------------------- /Listing 2-31 Protected class/.vs/Listing 2-31 Protected class/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-31 Protected class/.vs/Listing 2-31 Protected class/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 2-42 Using foreach/obj/Debug/Listing 2-42 Using foreach.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-42 Using foreach/obj/Debug/Listing 2-42 Using foreach.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing 2-46 The serializable attribute/.vs/Listing 2-46 The serializable attribute/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-46 The serializable attribute/.vs/Listing 2-46 The serializable attribute/v16/.suo -------------------------------------------------------------------------------- /Listing 2-54 Reflection method call/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-54 Reflection method call/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2.12 Simple Method/obj/Debug/Listing 2.12 Simple Method.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.12 Simple Method/obj/Debug/Listing 2.12 Simple Method.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing 2.8 Overloaded constructors/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.8 Overloaded constructors/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 3-1 Creating JSON/obj/Debug/Listing 3-1 Creating JSON.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-1 Creating JSON/obj/Debug/Listing 3-1 Creating JSON.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing.2.4 Creating an enum/.vs/Listing.2.4 Creating an enum/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing.2.4 Creating an enum/.vs/Listing.2.4 Creating an enum/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing1.10ExceptionsInPLINQQueries/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.10ExceptionsInPLINQQueries/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing1.15ContinuationTasks/.vs/Listing1.15ContinuationTasks/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.15ContinuationTasks/.vs/Listing1.15ContinuationTasks/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing1.1Parallel.Invoke/obj/Debug/Listing1.1Parallel.Invoke.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.1Parallel.Invoke/obj/Debug/Listing1.1Parallel.Invoke.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing1.6InformingParallelization/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.6InformingParallelization/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing1.7UsingAsOrderedToPreserveDataOrdening/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing2-18 Overloaded DateTime constructor/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing2.1Value and Reference types/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing2.1Value and Reference types/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing3-11 Using TryParse/obj/Debug/Listing3-11 Using TryParse.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-11 Using TryParse/obj/Debug/Listing3-11 Using TryParse.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing3-14AES encryption/obj/Debug/Listing3-14AES encryption.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-14AES encryption/obj/Debug/Listing3-14AES encryption.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing3-15AES decryption/obj/Debug/Listing3-15AES decryption.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-15AES decryption/obj/Debug/Listing3-15AES decryption.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing3-16RSA encryption/obj/Debug/Listing3-16RSA encryption.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-16RSA encryption/obj/Debug/Listing3-16RSA encryption.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing3-5 Copy construtor/obj/Debug/Listing3-5 Copy construtor.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-5 Copy construtor/obj/Debug/Listing3-5 Copy construtor.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing 2-24 Bad dynamic code/.vs/Listing 2-24 Bad dynamic code/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-24 Bad dynamic code/.vs/Listing 2-24 Bad dynamic code/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 2-28 Using a proterty/.vs/Listing 2-28 Using a proterty/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-28 Using a proterty/.vs/Listing 2-28 Using a proterty/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 2-29 Creating accessor methods/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-29 Creating accessor methods/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-43 Creating an enumerable type/.vs/Listing 2-43 Creating an enumerable type/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-43 Creating an enumerable type/.vs/Listing 2-43 Creating an enumerable type/v16/.suo -------------------------------------------------------------------------------- /Listing 2-43 Creating an enumerable type/bin/Debug/Listing 2-43 Creating an enumerable type.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-43 Creating an enumerable type/bin/Debug/Listing 2-43 Creating an enumerable type.exe -------------------------------------------------------------------------------- /Listing 2-43 Creating an enumerable type/bin/Debug/Listing 2-43 Creating an enumerable type.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-43 Creating an enumerable type/bin/Debug/Listing 2-43 Creating an enumerable type.pdb -------------------------------------------------------------------------------- /Listing 2-43 Creating an enumerable type/obj/Debug/Listing 2-43 Creating an enumerable type.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-43 Creating an enumerable type/obj/Debug/Listing 2-43 Creating an enumerable type.exe -------------------------------------------------------------------------------- /Listing 2-43 Creating an enumerable type/obj/Debug/Listing 2-43 Creating an enumerable type.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-43 Creating an enumerable type/obj/Debug/Listing 2-43 Creating an enumerable type.pdb -------------------------------------------------------------------------------- /Listing 2.11 Static variables/.vs/Listing 2.11 Static variables/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.11 Static variables/.vs/Listing 2.11 Static variables/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 2.13 Extension method/.vs/Listing 2.13 Extension method/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.13 Extension method/.vs/Listing 2.13 Extension method/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 2.14 Named parameters/.vs/Listing 2.14 Named parameters/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2.14 Named parameters/.vs/Listing 2.14 Named parameters/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 3-3 Validating JSON/obj/Debug/Listing 3-3 Validating JSON.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 3-3 Validating JSON/obj/Debug/Listing 3-3 Validating JSON.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing1.12RunATask/bin/Debug/Listing1.12RunATask.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing1.13TaskReturningValue/.vs/Listing1.13TaskReturningValue/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.13TaskReturningValue/.vs/Listing1.13TaskReturningValue/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing1.17AttachedChildTasks/.vs/Listing1.17AttachedChildTasks/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing1.17AttachedChildTasks/.vs/Listing1.17AttachedChildTasks/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing3-19Machine level keys/.vs/Listing3-19Machine level keys/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing3-19Machine level keys/.vs/Listing3-19Machine level keys/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing3-32Hashing/bin/Debug/Listing3-32Hashing.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Listing 1.9UsingTheForAllMethod/.vs/Listing 1.9UsingTheForAllMethod/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 1.9UsingTheForAllMethod/.vs/Listing 1.9UsingTheForAllMethod/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 2-19 Method overriding/.vs/Listing 2-19 Method overriding/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-19 Method overriding/.vs/Listing 2-19 Method overriding/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 2-23 Type conversion/obj/Debug/Listing 2-23 Type conversion.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-23 Type conversion/obj/Debug/Listing 2-23 Type conversion.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Listing 2-32 Printing interface/.vs/Listing 2-32 Printing interface/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-32 Printing interface/.vs/Listing 2-32 Printing interface/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 2-40 Typed IComparable/.vs/Listing 2-40 Typed IComparable/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-40 Typed IComparable/.vs/Listing 2-40 Typed IComparable/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 2-41 Get an enumerator/.vs/Listing 2-41 Get an enumerator/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-41 Get an enumerator/.vs/Listing 2-41 Get an enumerator/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 2-43 Creating an enumerable type/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-43 Creating an enumerable type/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Listing 2-45 Using IDisposable/.vs/Listing 2-45 Using IDisposable/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-45 Using IDisposable/.vs/Listing 2-45 Using IDisposable/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Listing 2-46 The serializable attribute/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypherm0nk/70-483-programming-csharp/HEAD/Listing 2-46 The serializable attribute/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache --------------------------------------------------------------------------------