├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── Skill 1 - Manage program flow └── MultiThreadingExamples │ ├── MultiThreadingExamples.sln │ ├── MultiThreadingExamples │ ├── App.config │ ├── ForeBackGroundThreads.cs │ ├── MultiThreadingExamples.csproj │ ├── ParametrizedThreadStartExample.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UsingAsyncAndAwait.cs │ ├── UsingContinuationWith.cs │ ├── UsingPLINQ.cs │ ├── UsingParallelClass.cs │ ├── UsingPlinqAsOrdered.cs │ ├── UsingTasks.cs │ ├── UsingTheParallelClass.cs │ ├── UsingThreadClass.cs │ ├── UsingThreadPools.cs │ └── UsingWaitAllOnMultipleTasks.cs │ ├── create-implement-events-callbacks │ ├── App.config │ ├── CustomEventAccessor.cs │ ├── EventExceptionHandling.cs │ ├── EventWithAction.cs │ ├── EventWithEventHandler.cs │ ├── MulticastingDelegate.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UnderstandingDelegates.cs │ ├── create-implement-events-callbacks.csproj │ └── using-lambda-expressions.cs │ ├── implement-exception-handling │ ├── App.config │ ├── CatchingMultipleExceptions.cs │ ├── CreatingCustomException.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RethrowingExceptions.cs │ ├── ThrowsException.cs │ ├── UsingExceptionDIspatchInfo.cs │ └── implement-exception-handling.csproj │ ├── implement-program-flow │ ├── App.config │ ├── IteratingAcrossCollections.cs │ ├── MakingDecisions.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── WorkingWIthBooleansExpressions.cs │ └── implement-program-flow.csproj │ └── manage-multithreading │ ├── App.config │ ├── DeadlockExample.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SharingDataProblem.cs │ ├── TheVolatileKeyword.cs │ ├── UsingCancellationToken.cs │ ├── UsingContinuationWithCancelledTasks.cs │ ├── UsingInterlockerClass.cs │ ├── UsingLockOperator.cs │ ├── UsingWaitAnyTimeOut.cs │ └── manage-multithreading.csproj ├── Skill 2 - Create and use types └── CreateAndUseTypes │ ├── 25_RuntimeReflection │ ├── 25_RuntimeReflection.csproj │ ├── App.config │ ├── ClassForReflectionPractice.cs │ ├── CodeDomControllerGenerator.cs │ ├── LambdaFuncCode.cs │ ├── MyCoolAttribute.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── UsingExpressionTrees.cs │ ├── 26_ManageObjLifecycle │ ├── 26_ManageObjLifecycle.csproj │ ├── App.config │ ├── BaseClass.cs │ ├── BaseClassWithFinalizer.cs │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── 27_ManipulateStrings │ ├── 27_ManipulateStrings.csproj │ ├── App.config │ ├── EnumerateStrings.cs │ ├── FormatStrings.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SearchString.cs │ ├── packages.config │ └── sBuildersWriterReader.cs │ ├── ConsumeTypes │ ├── App.config │ ├── BoxingUnboxing.cs │ ├── COMApiDynamic.cs │ ├── ConsumeTypes.csproj │ ├── ExplicitConversion.cs │ ├── HelperClasses.cs │ ├── ImplicitConversion.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UserDefinedConversion.cs │ └── packages.config │ ├── CreateAndImplClassHierar │ ├── App.config │ ├── CreateAndImplClassHierar.csproj │ ├── DesignImplInterfaces.cs │ ├── ImplIComparable.cs │ ├── ImplIEnumerable.cs │ ├── InheritBaseClass.cs │ ├── InheritSealedAbstract.cs │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── CreateAndUseTypes.sln │ └── EnforcingEncapsulation │ ├── AccessModifiers.cs │ ├── App.config │ ├── EnforcingEncapsulation.csproj │ ├── ExplicitInterfaceImpl.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── UsingProperties.cs ├── Skill 3 - Debug Apps and Implement Security └── DebugAppsImplementSecurity │ ├── 31_ValidateAppInput │ ├── 31_ValidateAppInput.csproj │ ├── App.config │ ├── BuiltinValidationFunctions.cs │ ├── EvaluateRegex.cs │ ├── ManageDataIntegrity.cs │ ├── Models │ │ └── Student.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ValidateJsonData.cs │ ├── Validator.cs │ └── packages.config │ ├── 32_Symmetric_Asymmetric_Encryption │ ├── 32_Symmetric_Asymmetric_Encryption.csproj │ ├── App.config │ ├── AsymmetricEncryption.cs │ ├── CreateCertificates.cs │ ├── HashingData.cs │ ├── Models │ │ └── EncryptionData.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SymmetricEncryption.cs │ ├── 33_ManageAssemblies │ ├── 33_ManageAssemblies.csproj │ ├── App.config │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── 34_DebugAnApplication │ ├── 34_DebugAnApplication.csproj │ ├── App.config │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── 35_ApplicationDiagnostics │ ├── 35_ApplicationDiagnostics.csproj │ ├── App.config │ ├── DebugClassExample.cs │ ├── PerformanceCouintersExample.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── StopwatchExample.cs │ ├── TraceSourceAndListeners.cs │ └── WritingToEtw.cs │ ├── DebugAppsImplementSecurity.sln │ └── WinRTComponent │ ├── Class1.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── WinRTComponent.csproj └── Skill 4 - Implement Data Access └── ImplementDataAccess ├── 42_ConsumeData ├── 42_ConsumeData.csproj ├── App.config ├── Connected Services │ └── ServiceReference1 │ │ ├── Reference.cs │ │ ├── Reference.svcmap │ │ ├── Service.disco │ │ ├── Service.wsdl │ │ ├── Service.xsd │ │ ├── Service1.xsd │ │ ├── Service2.xsd │ │ ├── _42_ConsumeData.ServiceReference1.CompositeType.datasource │ │ ├── configuration.svcinfo │ │ └── configuration91.svcinfo ├── ConsumeJson.cs ├── ConsumeWcfService.cs ├── ConsumeXml.cs ├── InsertUpdateDeleteSqlCommand.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── RetrievingData.cs ├── UsingTransactionScope.cs └── packages.config ├── 42_ExampleWcfService ├── App_Code │ ├── IService.cs │ └── Service.cs ├── Service.svc ├── Web.Debug.config └── Web.config ├── ImplementDataAccess.41_PerformIoOperations ├── App.config ├── AsyncHttpCall.cs ├── CreateDeleteShowMetadaFile.cs ├── Directory │ ├── directory1 │ │ ├── file_3.txt │ │ └── file_4.txt │ ├── file1.txt │ ├── file2.txt │ └── file_6.txt ├── FileToCompress │ ├── file.gz │ └── file.txt ├── ImplementDataAccess.41_PerformIoOperations.csproj ├── ListIterateDirectories.cs ├── NetworkCallUsingWebRequest.cs ├── OperationsOnDirectories.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── WorkingWithStreams.cs └── WriteReadFile.cs └── ImplementDataAccess.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/README.md -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples.sln -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/App.config -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/ForeBackGroundThreads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/ForeBackGroundThreads.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/MultiThreadingExamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/MultiThreadingExamples.csproj -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/ParametrizedThreadStartExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/ParametrizedThreadStartExample.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/Program.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingAsyncAndAwait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingAsyncAndAwait.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingContinuationWith.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingContinuationWith.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingPLINQ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingPLINQ.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingParallelClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingParallelClass.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingPlinqAsOrdered.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingPlinqAsOrdered.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingTasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingTasks.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingTheParallelClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingTheParallelClass.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingThreadClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingThreadClass.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingThreadPools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingThreadPools.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingWaitAllOnMultipleTasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/MultiThreadingExamples/UsingWaitAllOnMultipleTasks.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/App.config -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/CustomEventAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/CustomEventAccessor.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/EventExceptionHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/EventExceptionHandling.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/EventWithAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/EventWithAction.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/EventWithEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/EventWithEventHandler.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/MulticastingDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/MulticastingDelegate.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/Program.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/UnderstandingDelegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/UnderstandingDelegates.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/create-implement-events-callbacks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/create-implement-events-callbacks.csproj -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/using-lambda-expressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/create-implement-events-callbacks/using-lambda-expressions.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/implement-exception-handling/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/implement-exception-handling/App.config -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/implement-exception-handling/CatchingMultipleExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/implement-exception-handling/CatchingMultipleExceptions.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/implement-exception-handling/CreatingCustomException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/implement-exception-handling/CreatingCustomException.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/implement-exception-handling/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/implement-exception-handling/Program.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/implement-exception-handling/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/implement-exception-handling/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/implement-exception-handling/RethrowingExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/implement-exception-handling/RethrowingExceptions.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/implement-exception-handling/ThrowsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/implement-exception-handling/ThrowsException.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/implement-exception-handling/UsingExceptionDIspatchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/implement-exception-handling/UsingExceptionDIspatchInfo.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/implement-exception-handling/implement-exception-handling.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/implement-exception-handling/implement-exception-handling.csproj -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/implement-program-flow/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/implement-program-flow/App.config -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/implement-program-flow/IteratingAcrossCollections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/implement-program-flow/IteratingAcrossCollections.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/implement-program-flow/MakingDecisions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/implement-program-flow/MakingDecisions.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/implement-program-flow/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/implement-program-flow/Program.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/implement-program-flow/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/implement-program-flow/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/implement-program-flow/WorkingWIthBooleansExpressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/implement-program-flow/WorkingWIthBooleansExpressions.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/implement-program-flow/implement-program-flow.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/implement-program-flow/implement-program-flow.csproj -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/App.config -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/DeadlockExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/DeadlockExample.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/Program.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/SharingDataProblem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/SharingDataProblem.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/TheVolatileKeyword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/TheVolatileKeyword.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/UsingCancellationToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/UsingCancellationToken.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/UsingContinuationWithCancelledTasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/UsingContinuationWithCancelledTasks.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/UsingInterlockerClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/UsingInterlockerClass.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/UsingLockOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/UsingLockOperator.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/UsingWaitAnyTimeOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/UsingWaitAnyTimeOut.cs -------------------------------------------------------------------------------- /Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/manage-multithreading.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 1 - Manage program flow/MultiThreadingExamples/manage-multithreading/manage-multithreading.csproj -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/25_RuntimeReflection/25_RuntimeReflection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/25_RuntimeReflection/25_RuntimeReflection.csproj -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/25_RuntimeReflection/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/25_RuntimeReflection/App.config -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/25_RuntimeReflection/ClassForReflectionPractice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/25_RuntimeReflection/ClassForReflectionPractice.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/25_RuntimeReflection/CodeDomControllerGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/25_RuntimeReflection/CodeDomControllerGenerator.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/25_RuntimeReflection/LambdaFuncCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/25_RuntimeReflection/LambdaFuncCode.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/25_RuntimeReflection/MyCoolAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/25_RuntimeReflection/MyCoolAttribute.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/25_RuntimeReflection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/25_RuntimeReflection/Program.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/25_RuntimeReflection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/25_RuntimeReflection/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/25_RuntimeReflection/UsingExpressionTrees.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/25_RuntimeReflection/UsingExpressionTrees.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/26_ManageObjLifecycle/26_ManageObjLifecycle.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/26_ManageObjLifecycle/26_ManageObjLifecycle.csproj -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/26_ManageObjLifecycle/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/26_ManageObjLifecycle/App.config -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/26_ManageObjLifecycle/BaseClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/26_ManageObjLifecycle/BaseClass.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/26_ManageObjLifecycle/BaseClassWithFinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/26_ManageObjLifecycle/BaseClassWithFinalizer.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/26_ManageObjLifecycle/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/26_ManageObjLifecycle/Program.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/26_ManageObjLifecycle/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/26_ManageObjLifecycle/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/27_ManipulateStrings/27_ManipulateStrings.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/27_ManipulateStrings/27_ManipulateStrings.csproj -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/27_ManipulateStrings/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/27_ManipulateStrings/App.config -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/27_ManipulateStrings/EnumerateStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/27_ManipulateStrings/EnumerateStrings.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/27_ManipulateStrings/FormatStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/27_ManipulateStrings/FormatStrings.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/27_ManipulateStrings/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/27_ManipulateStrings/Program.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/27_ManipulateStrings/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/27_ManipulateStrings/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/27_ManipulateStrings/SearchString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/27_ManipulateStrings/SearchString.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/27_ManipulateStrings/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/27_ManipulateStrings/packages.config -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/27_ManipulateStrings/sBuildersWriterReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/27_ManipulateStrings/sBuildersWriterReader.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/App.config -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/BoxingUnboxing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/BoxingUnboxing.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/COMApiDynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/COMApiDynamic.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/ConsumeTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/ConsumeTypes.csproj -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/ExplicitConversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/ExplicitConversion.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/HelperClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/HelperClasses.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/ImplicitConversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/ImplicitConversion.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/Program.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/UserDefinedConversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/UserDefinedConversion.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/ConsumeTypes/packages.config -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/CreateAndImplClassHierar/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/CreateAndImplClassHierar/App.config -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/CreateAndImplClassHierar/CreateAndImplClassHierar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/CreateAndImplClassHierar/CreateAndImplClassHierar.csproj -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/CreateAndImplClassHierar/DesignImplInterfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/CreateAndImplClassHierar/DesignImplInterfaces.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/CreateAndImplClassHierar/ImplIComparable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/CreateAndImplClassHierar/ImplIComparable.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/CreateAndImplClassHierar/ImplIEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/CreateAndImplClassHierar/ImplIEnumerable.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/CreateAndImplClassHierar/InheritBaseClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/CreateAndImplClassHierar/InheritBaseClass.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/CreateAndImplClassHierar/InheritSealedAbstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/CreateAndImplClassHierar/InheritSealedAbstract.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/CreateAndImplClassHierar/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/CreateAndImplClassHierar/Program.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/CreateAndImplClassHierar/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/CreateAndImplClassHierar/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/CreateAndUseTypes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/CreateAndUseTypes.sln -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/EnforcingEncapsulation/AccessModifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/EnforcingEncapsulation/AccessModifiers.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/EnforcingEncapsulation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/EnforcingEncapsulation/App.config -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/EnforcingEncapsulation/EnforcingEncapsulation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/EnforcingEncapsulation/EnforcingEncapsulation.csproj -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/EnforcingEncapsulation/ExplicitInterfaceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/EnforcingEncapsulation/ExplicitInterfaceImpl.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/EnforcingEncapsulation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/EnforcingEncapsulation/Program.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/EnforcingEncapsulation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/EnforcingEncapsulation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 2 - Create and use types/CreateAndUseTypes/EnforcingEncapsulation/UsingProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 2 - Create and use types/CreateAndUseTypes/EnforcingEncapsulation/UsingProperties.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/31_ValidateAppInput.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/31_ValidateAppInput.csproj -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/App.config -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/BuiltinValidationFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/BuiltinValidationFunctions.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/EvaluateRegex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/EvaluateRegex.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/ManageDataIntegrity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/ManageDataIntegrity.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/Models/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/Models/Student.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/Program.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/ValidateJsonData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/ValidateJsonData.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/Validator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/Validator.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/31_ValidateAppInput/packages.config -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/32_Symmetric_Asymmetric_Encryption/32_Symmetric_Asymmetric_Encryption.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/32_Symmetric_Asymmetric_Encryption/32_Symmetric_Asymmetric_Encryption.csproj -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/32_Symmetric_Asymmetric_Encryption/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/32_Symmetric_Asymmetric_Encryption/App.config -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/32_Symmetric_Asymmetric_Encryption/AsymmetricEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/32_Symmetric_Asymmetric_Encryption/AsymmetricEncryption.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/32_Symmetric_Asymmetric_Encryption/CreateCertificates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/32_Symmetric_Asymmetric_Encryption/CreateCertificates.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/32_Symmetric_Asymmetric_Encryption/HashingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/32_Symmetric_Asymmetric_Encryption/HashingData.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/32_Symmetric_Asymmetric_Encryption/Models/EncryptionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/32_Symmetric_Asymmetric_Encryption/Models/EncryptionData.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/32_Symmetric_Asymmetric_Encryption/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/32_Symmetric_Asymmetric_Encryption/Program.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/32_Symmetric_Asymmetric_Encryption/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/32_Symmetric_Asymmetric_Encryption/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/32_Symmetric_Asymmetric_Encryption/SymmetricEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/32_Symmetric_Asymmetric_Encryption/SymmetricEncryption.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/33_ManageAssemblies/33_ManageAssemblies.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/33_ManageAssemblies/33_ManageAssemblies.csproj -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/33_ManageAssemblies/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/33_ManageAssemblies/App.config -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/33_ManageAssemblies/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/33_ManageAssemblies/Program.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/33_ManageAssemblies/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/33_ManageAssemblies/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/34_DebugAnApplication/34_DebugAnApplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/34_DebugAnApplication/34_DebugAnApplication.csproj -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/34_DebugAnApplication/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/34_DebugAnApplication/App.config -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/34_DebugAnApplication/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/34_DebugAnApplication/Program.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/34_DebugAnApplication/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/34_DebugAnApplication/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/35_ApplicationDiagnostics/35_ApplicationDiagnostics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/35_ApplicationDiagnostics/35_ApplicationDiagnostics.csproj -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/35_ApplicationDiagnostics/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/35_ApplicationDiagnostics/App.config -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/35_ApplicationDiagnostics/DebugClassExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/35_ApplicationDiagnostics/DebugClassExample.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/35_ApplicationDiagnostics/PerformanceCouintersExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/35_ApplicationDiagnostics/PerformanceCouintersExample.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/35_ApplicationDiagnostics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/35_ApplicationDiagnostics/Program.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/35_ApplicationDiagnostics/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/35_ApplicationDiagnostics/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/35_ApplicationDiagnostics/StopwatchExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/35_ApplicationDiagnostics/StopwatchExample.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/35_ApplicationDiagnostics/TraceSourceAndListeners.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/35_ApplicationDiagnostics/TraceSourceAndListeners.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/35_ApplicationDiagnostics/WritingToEtw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/35_ApplicationDiagnostics/WritingToEtw.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/DebugAppsImplementSecurity.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/DebugAppsImplementSecurity.sln -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/WinRTComponent/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/WinRTComponent/Class1.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/WinRTComponent/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/WinRTComponent/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/WinRTComponent/WinRTComponent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 3 - Debug Apps and Implement Security/DebugAppsImplementSecurity/WinRTComponent/WinRTComponent.csproj -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/42_ConsumeData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/42_ConsumeData.csproj -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/App.config -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/Reference.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/Reference.svcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/Reference.svcmap -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/Service.disco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/Service.disco -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/Service.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/Service.wsdl -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/Service.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/Service.xsd -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/Service1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/Service1.xsd -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/Service2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/Service2.xsd -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/_42_ConsumeData.ServiceReference1.CompositeType.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/_42_ConsumeData.ServiceReference1.CompositeType.datasource -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/configuration.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/configuration.svcinfo -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/configuration91.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Connected Services/ServiceReference1/configuration91.svcinfo -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/ConsumeJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/ConsumeJson.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/ConsumeWcfService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/ConsumeWcfService.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/ConsumeXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/ConsumeXml.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/InsertUpdateDeleteSqlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/InsertUpdateDeleteSqlCommand.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Program.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/RetrievingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/RetrievingData.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/UsingTransactionScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/UsingTransactionScope.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ConsumeData/packages.config -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ExampleWcfService/App_Code/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ExampleWcfService/App_Code/IService.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ExampleWcfService/App_Code/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ExampleWcfService/App_Code/Service.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ExampleWcfService/Service.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ExampleWcfService/Service.svc -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ExampleWcfService/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ExampleWcfService/Web.Debug.config -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/42_ExampleWcfService/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/42_ExampleWcfService/Web.config -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/App.config -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/AsyncHttpCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/AsyncHttpCall.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/CreateDeleteShowMetadaFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/CreateDeleteShowMetadaFile.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/Directory/directory1/file_3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/Directory/directory1/file_4.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/Directory/file1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/Directory/file2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/Directory/file_6.txt: -------------------------------------------------------------------------------- 1 | 1,2,3 testing -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/FileToCompress/file.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/FileToCompress/file.gz -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/FileToCompress/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/FileToCompress/file.txt -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/ImplementDataAccess.41_PerformIoOperations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/ImplementDataAccess.41_PerformIoOperations.csproj -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/ListIterateDirectories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/ListIterateDirectories.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/NetworkCallUsingWebRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/NetworkCallUsingWebRequest.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/OperationsOnDirectories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/OperationsOnDirectories.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/Program.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/WorkingWithStreams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/WorkingWithStreams.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/WriteReadFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.41_PerformIoOperations/WriteReadFile.cs -------------------------------------------------------------------------------- /Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisdeol/microsoft-exam-70-483-programming-with-c-the-journey-towards-the-certification/HEAD/Skill 4 - Implement Data Access/ImplementDataAccess/ImplementDataAccess.sln --------------------------------------------------------------------------------