├── .gitignore ├── AlgorithmQuestions ├── MaxPowerConsumption.cs ├── PloughTraversal.cs ├── Problems.md └── maxTriangleSum.cpp ├── CLR_via_CSharp ├── 04_Type Fundamentals │ ├── CastingTypes │ │ ├── BasicCasting.csproj │ │ └── Program.cs │ ├── InvalidCastException │ │ ├── InvalidCastException.csproj │ │ └── Program.cs │ ├── ObjectFunctions │ │ ├── ObjectFunctions.csproj │ │ └── Program.cs │ ├── Resources │ │ ├── C# at Run time step by step.pptx │ │ └── Common Type System Scopes.vsdx │ ├── TypeSafetyQuiz │ │ ├── BaseClass.cs │ │ ├── DerivedClass.cs │ │ ├── Program.cs │ │ └── TypeSafetyQuiz.csproj │ ├── Week2 │ │ ├── StartHere.cs │ │ ├── Week2.csproj │ │ └── Week2.sln │ └── notes.md ├── 05_PrimitveAndReferenceTypes │ ├── Boxing │ │ ├── Boxing.csproj │ │ └── Program.cs │ ├── CLR_Via_CSharp_chapter5.pptx │ ├── Dynamic │ │ ├── Dynamic.csproj │ │ └── Program.cs │ ├── Equals │ │ ├── Equals.csproj │ │ ├── Program.cs │ │ ├── SimpleClass.cs │ │ └── SimpleStruct.cs │ ├── HashCode │ │ ├── Classes.cs │ │ ├── HashCode.csproj │ │ └── Program.cs │ ├── PrimitiveTypes │ │ ├── PrimitiveTypes.csproj │ │ └── Program.cs │ ├── ValVsRefTypes.vsdx │ └── Week3 │ │ ├── Program.cs │ │ ├── Week3.csproj │ │ └── Week3.sln ├── 06_TypeAndMemberBasics │ ├── AllOfTheTypes │ │ ├── AllOfTheTypes.csproj │ │ └── Program.cs │ ├── Ch5,6 │ │ ├── Program.cs │ │ ├── Week4.csproj │ │ ├── Week4.pptx │ │ └── Week4.sln │ ├── TypeVisibility │ │ ├── Program.cs │ │ └── TypeVisibility.csproj │ ├── TypeVisibilityTests │ │ ├── MeaningOfLifeTests.cs │ │ └── TypeVisibilityTests.csproj │ ├── VersioningExample │ │ ├── CompanyA │ │ │ └── Phone.cs │ │ ├── CompanyB │ │ │ └── BetterPhone.cs │ │ ├── Program.cs │ │ └── VersioningExample.csproj │ └── Week4.sln ├── 08_Methods │ ├── ByteToInt32 │ │ ├── ByteToInt32.csproj │ │ └── Program.cs │ ├── Chapter8 │ │ ├── Chapter8.csproj │ │ ├── Chapter8.sln │ │ └── Program.cs │ ├── ConstructorsForReferenceTypes │ │ ├── ConstructorsForReferenceTypes.csproj │ │ ├── Program.cs │ │ └── ReferenceClass.cs │ ├── ConstructorsForValueTypes │ │ ├── ConstructorsForValueTypes.csproj │ │ └── Program.cs │ ├── ConversionOperatorsMethods │ │ ├── ConversionOperatorsMethods.csproj │ │ └── Program.cs │ ├── ExtensionMethods │ │ ├── ExtensionMethods.csproj │ │ ├── Program.cs │ │ └── StringBuilderExtensions.cs │ ├── Methods.pptx │ ├── OperatorOverloads │ │ ├── OperatorOverloads.csproj │ │ └── Program.cs │ ├── PartialMethods │ │ ├── PartialMethods.csproj │ │ └── Program.cs │ ├── Presentation1.pptx │ └── TypeConstructors │ │ ├── Program.cs │ │ └── TypeConstructors.csproj ├── 09_Parameters │ ├── DefaultAndOptional │ │ ├── DefaultAndOptional.csproj │ │ └── Program.cs │ ├── ImplicitlyTypedLocalVariables │ │ ├── ImplicitlyTypedLocalVariables.csproj │ │ └── Program.cs │ ├── MultipleArguments │ │ ├── MultipleArguments.csproj │ │ └── Program.cs │ ├── Parameters.pptx │ ├── Parameters │ │ ├── Arguments.csproj │ │ ├── Parameters.sln │ │ └── Program.cs │ ├── PassByReferenceAndValue │ │ ├── PassByReferenceAndValue.csproj │ │ └── Program.cs │ └── const.cpp ├── 10_Properties │ ├── AnonymousTypes │ │ ├── AnonymousTypes.csproj │ │ └── Program.cs │ ├── BitArray2 │ │ ├── BitArray2.csproj │ │ └── Program.cs │ ├── Events │ │ ├── Events.csproj │ │ ├── Events.sln │ │ └── Program.cs │ ├── ParameterfulProperties │ │ ├── ParameterfulProperties.csproj │ │ └── Program.cs │ ├── Properties.pptx │ └── Properties │ │ ├── Program.cs │ │ ├── Properties.csproj │ │ └── Properties.sln ├── 11_Events │ ├── BookCode1 │ │ ├── BookCode1.csproj │ │ └── Program.cs │ ├── CleanedBookExample │ │ ├── CleanedBookExample.csproj │ │ └── Program.cs │ ├── Events.pptx │ ├── Events │ │ ├── BookCodeExample1.csproj │ │ ├── Devices.cs │ │ ├── Events.sln │ │ ├── MailManager.cs │ │ ├── NewMailEventArgs.cs │ │ └── Program.cs │ ├── JeffreyIsNeverWrong │ │ ├── Castaway.cs │ │ ├── Mermaid.cs │ │ ├── Message.cs │ │ ├── MessageInABottle.csproj │ │ └── Program.cs │ ├── ResidencyPager │ │ ├── Devices.cs │ │ ├── NewPageEventArgs.cs │ │ ├── Program.cs │ │ ├── ResidencyPager.csproj │ │ └── ResidencyPagerManager.cs │ └── ResidencyPager2 │ │ ├── Devices.cs │ │ ├── NewPageEventArgs.cs │ │ ├── Program.cs │ │ ├── ResidencyPager2.csproj │ │ └── ResidencyPagerManager.cs ├── 12_Generics │ ├── Constraints │ │ ├── Constraints.csproj │ │ └── Program.cs │ ├── ConstraintsExample │ │ ├── ConstraintsExample.csproj │ │ └── Program.cs │ ├── Generics.pptx │ ├── Generics │ │ ├── Generics.md │ │ ├── Generics.sln │ │ ├── GenericsPerf.csproj │ │ ├── OperationTimer.cs │ │ └── Program.cs │ ├── Inheritance │ │ ├── Inheritance.csproj │ │ └── Program.cs │ ├── Methods │ │ ├── Methods.csproj │ │ └── Program.cs │ ├── OpenClosedTypes │ │ ├── OpenClosedTypes.csproj │ │ └── Program.cs │ ├── TripleSwap │ │ ├── Program.cs │ │ └── TripleSwap.csproj │ ├── TypeIdentity │ │ ├── NotThis.csproj │ │ └── Program.cs │ └── Variance │ │ ├── Program.cs │ │ └── Variance.csproj ├── 13_Interfaces │ ├── CallingInterfaceMethods │ │ ├── CallingInterfaceMethods.csproj │ │ └── Program.cs │ ├── ChessPieces │ │ ├── ChessPieces.csproj │ │ ├── Enums.cs │ │ ├── IPiece.cs │ │ ├── Knight.cs │ │ └── Program.cs │ ├── GenericInterface │ │ ├── GenericInterface.csproj │ │ └── Program.cs │ ├── GenericInterface2 │ │ ├── GenericInterface2.csproj │ │ └── Program.cs │ ├── ImplicitExplicit │ │ ├── ImplicitExplicit.csproj │ │ └── Program.cs │ ├── InterfaceConstraint │ │ ├── InterfaceConstraint.csproj │ │ └── Program.cs │ ├── Interfaception │ │ ├── Interfaception.csproj │ │ └── Program.cs │ ├── Interfaces Examples.vsdx │ ├── Interfaces.pptx │ ├── Interfaces │ │ ├── Interfaces.cs │ │ ├── Interfaces.csproj │ │ ├── Interfaces.md │ │ ├── Interfaces.sln │ │ ├── Program.cs │ │ └── SocketPort.cs │ └── MultiInterfaceSameSignature │ │ ├── MultiInterfaceSameSignature.csproj │ │ └── Program.cs ├── 14_Strings │ ├── Base64 │ │ ├── Base64.csproj │ │ └── base64.cs │ ├── Comparisons │ │ ├── Comparisons.csproj │ │ └── Program.cs │ ├── Conversions │ │ ├── Conversions.csproj │ │ └── Program.cs │ ├── Cultural Sorts │ │ ├── Cultural Sorts.csproj │ │ └── Program.cs │ ├── Culture Matters │ │ ├── Culture Matters.csproj │ │ └── Program.cs │ ├── HelloWorldWConstruction │ │ └── HelloWorldWConstruction.csproj │ ├── Operations │ │ ├── Operations.csproj │ │ └── Program.cs │ ├── Parsing │ │ ├── Parsing.csproj │ │ └── Program.cs │ ├── SecureString │ │ ├── SecureString.cs │ │ └── SecureString.csproj │ ├── SimpleEncoding │ │ ├── SimpleEncoding.cs │ │ └── SimpleEncoding.csproj │ ├── SimpleStringConstruction │ │ ├── HelloWorld.csproj │ │ └── Program.cs │ ├── StringInterning │ │ ├── Program.cs │ │ └── StringInterning.csproj │ ├── StringInterpolation │ │ ├── StringInterpolation.cs │ │ └── StringInterpolation.csproj │ └── Strings │ │ ├── Program.cs │ │ ├── Strings.csproj │ │ ├── Strings.md │ │ └── Strings.sln ├── 15_EnumsAndBitFLags │ ├── BitFlags │ │ ├── BitFlags.cs │ │ └── BitFlags.csproj │ ├── EnumeratedTypes │ │ ├── EnumeratedTypes.csproj │ │ ├── EnumeratedTypes.sln │ │ ├── EnumeratedTypesAndBitFlags.md │ │ └── Enums101.cs │ ├── ExtensionMethods │ │ ├── BlackJackExtensions.cs │ │ └── ExtensionMethods.csproj │ ├── ForceValuesOfEnum │ │ ├── ForceValuesOfEnum.csproj │ │ └── Program.cs │ ├── HardBitFlag │ │ ├── FromOurCode.cs │ │ └── HardBitFlag.csproj │ ├── LoopOverEnums │ │ ├── LoopOverEnums.cs │ │ └── LoopOverEnums.csproj │ ├── MappingeEnums │ │ ├── MappingEnums.cs │ │ └── MappingEnums.csproj │ ├── ReallyJustNumbers │ │ ├── ReallyJustNumbers.cs │ │ └── ReallyJustNumbers.csproj │ ├── SystemEnum │ │ ├── SystemEnum.cs │ │ └── SystemEnum.csproj │ └── TonsOfEnums │ │ ├── Program.cs │ │ └── TonsOfEnums.csproj ├── 16_Arrays │ ├── .gitignore │ ├── AnonymousTypes │ │ ├── AnonymousTypes.cs │ │ └── AnonymousTypes.csproj │ ├── ArrayCovariance │ │ ├── ArrayCovariance.cs │ │ └── ArrayCovariance.csproj │ ├── ArrayInternals │ │ ├── ArrayInternals.cs │ │ └── ArrayInternals.csproj │ ├── Arrays │ │ ├── Arrays.csproj │ │ ├── Arrays.md │ │ ├── Arrays.sln │ │ ├── SimpleArray.cs │ │ └── Value vs Reference Arrays.vsdx │ ├── Casting │ │ ├── Casting.cs │ │ └── Casting.csproj │ ├── Copy │ │ ├── Copy.cs │ │ └── Copy.csproj │ ├── CopyPower │ │ ├── Controllers │ │ │ └── WeatherForecastController.cs │ │ ├── CopyPower.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── ImplicitInterfaces │ │ ├── ImplicitInterfaces.cs │ │ └── ImplicitInterfaces.csproj │ ├── Initialization │ │ ├── Initialization.cs │ │ └── Initialization.csproj │ ├── Multi-dimensional │ │ ├── Multi-Dimensional.cs │ │ └── Multi-dimensional.csproj │ ├── Non-ZeroArray │ │ ├── Non-ZeroArray.csproj │ │ └── ThisShouldBeIllegal.cs │ ├── ReturningArrays │ │ ├── ReturnArray.cs │ │ └── ReturningArrays.csproj │ ├── SystemArray │ │ ├── Program.cs │ │ └── SystemArray.csproj │ ├── UnsafeAccess │ │ ├── UnsafeAccess.cs │ │ └── UnsafeAccess.csproj │ └── ValueReference │ │ ├── ValueReference.cs │ │ └── ValueReference.csproj ├── 17_Delegates │ ├── Action │ │ ├── Action.cs │ │ └── Action.csproj │ ├── DelegateChaining │ │ ├── DelegateChaining.csproj │ │ └── Program.cs │ ├── DelegateEvolution │ │ ├── DelegateEvolution.csproj │ │ └── Program.cs │ ├── Delegates.pptx │ ├── Func │ │ ├── Func.csproj │ │ └── Program.cs │ ├── InitialExample │ │ └── callback.c │ ├── InstanceDelegates │ │ ├── InstanceDelegates.cs │ │ └── InstanceDelegates.csproj │ └── StaticDelegates │ │ ├── Delegates.md │ │ ├── Delegates.sln │ │ ├── StaticDelegates.cs │ │ └── StaticDelegates.csproj ├── 18_CustomAttributes │ ├── CustomAttributes.md │ ├── CustomAttributes │ │ ├── CustomAttributes.csproj │ │ ├── CustomAttributes.sln │ │ └── Program.cs.cs │ ├── DefineYourOwnAttribute │ │ ├── DefineYourOwnAttribute.csproj │ │ └── Program.cs.cs │ └── FirstAttribute │ │ ├── FirstAttribute.csproj │ │ └── Program.cs.cs ├── 19_NullableValueTypes │ ├── CLRSupport │ │ ├── CLRSupport.cs │ │ └── CLRSupport.csproj │ ├── Conversions │ │ ├── Conversions.cs │ │ └── Conversions.csproj │ ├── NullCoalescing │ │ ├── NullCoalescing.csproj │ │ └── RememberThis.cs │ ├── NullableValueTypes.md │ ├── NullableValueTypes │ │ ├── Intro.cs │ │ ├── NullableValueTypes.csproj │ │ └── NullableValueTypes.sln │ └── Playground │ │ ├── Playground.csproj │ │ └── Program.cs ├── 21_GarbageCollection │ ├── 21_GarbageCollection.pptx │ └── GarbageCollection.md ├── 24_RuntimeSerialization │ ├── ComparingSerialized.txt │ ├── ComparingSerializedReversed.txt │ ├── DataStuff │ │ ├── DataStuff.csproj │ │ └── Program.cs │ ├── MakeSerializable │ │ ├── MakeSerializable.csproj │ │ └── Program.cs │ ├── ModernBinarySerialization │ │ ├── ModernBinarySerialization.csproj │ │ └── Program.cs │ ├── ModernRuntimeSerialization │ │ ├── ModernRuntimeSerialization.csproj │ │ └── Program.cs │ ├── RuntimeSerialization.md │ ├── RuntimeSerialization │ │ ├── Introduction.cs │ │ ├── RuntimeSerialization.csproj │ │ └── RuntimeSerialization.sln │ ├── SerializingBestPractices │ │ ├── Program.cs │ │ └── SerializingBestPractices.csproj │ └── SerializingEnums │ │ ├── Program.cs │ │ └── SerializingEnums.csproj ├── Intro │ ├── HelloWorld │ │ ├── HelloWorld.csproj │ │ ├── HelloWorld.sln │ │ └── Program.cs │ ├── Historical Code Samples │ │ ├── HelloWorld.asm │ │ ├── HelloWorld.c │ │ └── perfectlyFine.cpp │ ├── Week1.md │ └── Week1.pdf └── Overview.md ├── CODE_OF_CONDUCT.md ├── Design_Patterns ├── Adapter │ ├── Adapter.csproj │ ├── Program.cs │ ├── README.md │ └── src │ │ ├── Cli.cs │ │ ├── TextManipulator.cs │ │ └── Transformer.cs ├── Command │ ├── Command.csproj │ ├── Program.cs │ ├── README.md │ └── src │ │ ├── Command.cs │ │ ├── CommandRunner.cs │ │ ├── Counter.cs │ │ └── CounterCli.cs ├── Completed Exercises │ ├── Completed Exercises.sln │ ├── CompositeCompleted │ │ ├── CompositeCompleted.csproj │ │ ├── Program.cs │ │ └── src │ │ │ ├── Cli.cs │ │ │ └── FileSystem │ │ │ ├── File.cs │ │ │ ├── Folder.cs │ │ │ └── Item.cs │ ├── FactoryMethodCompleted │ │ ├── FactoryMethodCompleted.csproj │ │ ├── Program.cs │ │ └── src │ │ │ ├── Cli.cs │ │ │ └── Dataset │ │ │ ├── Dataset.cs │ │ │ └── DatasetSummarizer.cs │ ├── IteratorCompleted │ │ ├── IteratorCompleted.csproj │ │ ├── Program.cs │ │ └── src │ │ │ ├── Cli.cs │ │ │ ├── Iterables │ │ │ ├── ChunkedList.cs │ │ │ ├── FibonacciSequence.cs │ │ │ ├── LazyList.cs │ │ │ └── LinkedList.cs │ │ │ └── Iterator.cs │ └── ProxyCompleted │ │ ├── Program.cs │ │ ├── ProxyCompleted.csproj │ │ └── src │ │ ├── Cli.cs │ │ └── Library │ │ ├── Image.cs │ │ ├── ImageLibrary.cs │ │ ├── ImageStore.cs │ │ └── LazyImageProxy.cs ├── Composite │ ├── Composite.csproj │ ├── Program.cs │ ├── README.md │ └── src │ │ ├── Cli.cs │ │ └── FileSystem │ │ ├── File.cs │ │ ├── Folder.cs │ │ └── Item.cs ├── Design Patterns.sln ├── Factory Method │ ├── Factory Method.csproj │ ├── Program.cs │ ├── README.md │ └── src │ │ ├── Cli.cs │ │ └── Dataset │ │ ├── Dataset.cs │ │ └── DatasetSummarizer.cs ├── Iterator │ ├── Iterator.csproj │ ├── Program.cs │ ├── README.md │ └── src │ │ ├── Cli.cs │ │ ├── Iterables │ │ ├── ChunkedList.cs │ │ ├── FibonacciSequence.cs │ │ ├── LazyList.cs │ │ └── LinkedList.cs │ │ └── Iterator.cs ├── Proxy │ ├── Program.cs │ ├── Proxy.csproj │ ├── README.md │ └── src │ │ ├── Cli.cs │ │ └── Library │ │ ├── Image.cs │ │ ├── ImageLibrary.cs │ │ ├── ImageStore.cs │ │ └── LazyImageProxy.cs ├── README.md ├── Singleton │ ├── Program.cs │ ├── README.md │ ├── Singleton.csproj │ └── src │ │ ├── Cli.cs │ │ ├── Config.cs │ │ ├── ConfigEditor.cs │ │ └── TextTransformer.cs ├── State │ ├── Program.cs │ ├── README.md │ ├── State.csproj │ └── src │ │ ├── Cli.cs │ │ ├── Note.cs │ │ └── NoteState.cs ├── Strategy │ ├── Program.cs │ ├── README.md │ ├── Strategy.csproj │ └── src │ │ ├── Cli.cs │ │ ├── GuesserStrategies.cs │ │ └── NumberGuesser.cs ├── Template Method │ ├── Program.cs │ ├── README.md │ ├── Template Method.csproj │ └── src │ │ ├── Cli.cs │ │ ├── FileSystem.cs │ │ └── MemoryFileSystem.cs └── Utils │ ├── Cli.cs │ └── Utils.csproj ├── LICENSE ├── OO_Thought_Process ├── OO Materials.sln ├── README.md ├── Session 01 - Fundamental OO Concepts │ ├── Composition │ │ ├── ComposedShape.cs │ │ ├── Location.cs │ │ └── UncomposedShape.cs │ ├── Encapsulation │ │ └── Rectangle.cs │ ├── Inheritance │ │ └── Shape.cs │ ├── Polymorphism │ │ ├── ImproperShape.cs │ │ └── Shape.cs │ ├── Program.cs │ ├── Session 01 - Fundamental OO Concepts.csproj │ └── Session 1.md ├── Session 02 - Foundations of OO Design │ ├── Examples │ │ ├── Bank.cs │ │ └── Taxi.cs │ ├── Program.cs │ ├── Session 02 - Foundations of OO Design.csproj │ └── Session 2.md ├── Session 03 - More OO Concepts │ ├── Examples │ │ ├── Calculator.cs │ │ └── ErrorHandling.cs │ ├── Program.cs │ ├── Session 03 - More OO Concepts.csproj │ └── Session 3.md ├── Session 04 - Design Guidelines │ └── Session 4.md ├── Session 05 - Mastering Inheritance and Composition │ ├── Concretization │ │ └── Shape.cs │ ├── Extension │ │ └── BankAccount.cs │ ├── Program.cs │ ├── Refinement │ │ └── Calculator.cs │ ├── Session 05 - Mastering Inheritance and Composition.csproj │ └── Session 5.md ├── Session 06 - Creating Frameworks │ ├── Examples │ │ ├── NonReusable │ │ │ ├── NonReusableShop.cs │ │ │ └── TestShop.cs │ │ └── Reusable │ │ │ ├── ReusableShop.cs │ │ │ └── TestShop.cs │ ├── Program.cs │ ├── Session 06 - Creating Frameworks.csproj │ └── Session 6.md ├── Session 07 - Building with Composition │ ├── Examples │ │ └── Employee.cs │ ├── Program.cs │ ├── Session 07 - Building with Composition.csproj │ └── Session 7.md ├── Session 08 - Design Patterns │ └── Session 8.md ├── Session 09 - Dependency Injection │ ├── Program.cs │ ├── Session 09 - Dependency Injection.csproj │ ├── Session 9.md │ ├── notes │ │ └── example-uml.md │ └── src │ │ ├── Composition │ │ └── Example.cs │ │ ├── Dependency Injection │ │ └── Example.cs │ │ └── Inheritance │ │ └── Example.cs └── Session 10 - SOLID Principles │ ├── Session 10.md │ └── notes │ ├── dependency-inversion-uml.md │ ├── interface-segragation-uml.md │ ├── liskov-substitution-uml.md │ ├── open-close-uml.md │ └── single-responsibility-uml.md ├── README.md ├── SECURITY.md └── SUPPORT.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/.gitignore -------------------------------------------------------------------------------- /AlgorithmQuestions/MaxPowerConsumption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/AlgorithmQuestions/MaxPowerConsumption.cs -------------------------------------------------------------------------------- /AlgorithmQuestions/PloughTraversal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/AlgorithmQuestions/PloughTraversal.cs -------------------------------------------------------------------------------- /AlgorithmQuestions/Problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/AlgorithmQuestions/Problems.md -------------------------------------------------------------------------------- /AlgorithmQuestions/maxTriangleSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/AlgorithmQuestions/maxTriangleSum.cpp -------------------------------------------------------------------------------- /CLR_via_CSharp/04_Type Fundamentals/CastingTypes/BasicCasting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/04_Type Fundamentals/CastingTypes/BasicCasting.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/04_Type Fundamentals/CastingTypes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/04_Type Fundamentals/CastingTypes/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/04_Type Fundamentals/InvalidCastException/InvalidCastException.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/04_Type Fundamentals/InvalidCastException/InvalidCastException.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/04_Type Fundamentals/InvalidCastException/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/04_Type Fundamentals/InvalidCastException/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/04_Type Fundamentals/ObjectFunctions/ObjectFunctions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/04_Type Fundamentals/ObjectFunctions/ObjectFunctions.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/04_Type Fundamentals/ObjectFunctions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/04_Type Fundamentals/ObjectFunctions/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/04_Type Fundamentals/Resources/C# at Run time step by step.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/04_Type Fundamentals/Resources/C# at Run time step by step.pptx -------------------------------------------------------------------------------- /CLR_via_CSharp/04_Type Fundamentals/Resources/Common Type System Scopes.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/04_Type Fundamentals/Resources/Common Type System Scopes.vsdx -------------------------------------------------------------------------------- /CLR_via_CSharp/04_Type Fundamentals/TypeSafetyQuiz/BaseClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/04_Type Fundamentals/TypeSafetyQuiz/BaseClass.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/04_Type Fundamentals/TypeSafetyQuiz/DerivedClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/04_Type Fundamentals/TypeSafetyQuiz/DerivedClass.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/04_Type Fundamentals/TypeSafetyQuiz/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/04_Type Fundamentals/TypeSafetyQuiz/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/04_Type Fundamentals/TypeSafetyQuiz/TypeSafetyQuiz.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/04_Type Fundamentals/TypeSafetyQuiz/TypeSafetyQuiz.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/04_Type Fundamentals/Week2/StartHere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/04_Type Fundamentals/Week2/StartHere.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/04_Type Fundamentals/Week2/Week2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/04_Type Fundamentals/Week2/Week2.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/04_Type Fundamentals/Week2/Week2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/04_Type Fundamentals/Week2/Week2.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/04_Type Fundamentals/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/04_Type Fundamentals/notes.md -------------------------------------------------------------------------------- /CLR_via_CSharp/05_PrimitveAndReferenceTypes/Boxing/Boxing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/05_PrimitveAndReferenceTypes/Boxing/Boxing.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/05_PrimitveAndReferenceTypes/Boxing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/05_PrimitveAndReferenceTypes/Boxing/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/05_PrimitveAndReferenceTypes/CLR_Via_CSharp_chapter5.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/05_PrimitveAndReferenceTypes/CLR_Via_CSharp_chapter5.pptx -------------------------------------------------------------------------------- /CLR_via_CSharp/05_PrimitveAndReferenceTypes/Dynamic/Dynamic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/05_PrimitveAndReferenceTypes/Dynamic/Dynamic.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/05_PrimitveAndReferenceTypes/Dynamic/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/05_PrimitveAndReferenceTypes/Dynamic/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/05_PrimitveAndReferenceTypes/Equals/Equals.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/05_PrimitveAndReferenceTypes/Equals/Equals.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/05_PrimitveAndReferenceTypes/Equals/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/05_PrimitveAndReferenceTypes/Equals/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/05_PrimitveAndReferenceTypes/Equals/SimpleClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/05_PrimitveAndReferenceTypes/Equals/SimpleClass.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/05_PrimitveAndReferenceTypes/Equals/SimpleStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/05_PrimitveAndReferenceTypes/Equals/SimpleStruct.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/05_PrimitveAndReferenceTypes/HashCode/Classes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/05_PrimitveAndReferenceTypes/HashCode/Classes.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/05_PrimitveAndReferenceTypes/HashCode/HashCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/05_PrimitveAndReferenceTypes/HashCode/HashCode.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/05_PrimitveAndReferenceTypes/HashCode/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/05_PrimitveAndReferenceTypes/HashCode/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/05_PrimitveAndReferenceTypes/PrimitiveTypes/PrimitiveTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/05_PrimitveAndReferenceTypes/PrimitiveTypes/PrimitiveTypes.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/05_PrimitveAndReferenceTypes/PrimitiveTypes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/05_PrimitveAndReferenceTypes/PrimitiveTypes/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/05_PrimitveAndReferenceTypes/ValVsRefTypes.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/05_PrimitveAndReferenceTypes/ValVsRefTypes.vsdx -------------------------------------------------------------------------------- /CLR_via_CSharp/05_PrimitveAndReferenceTypes/Week3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/05_PrimitveAndReferenceTypes/Week3/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/05_PrimitveAndReferenceTypes/Week3/Week3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/05_PrimitveAndReferenceTypes/Week3/Week3.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/05_PrimitveAndReferenceTypes/Week3/Week3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/05_PrimitveAndReferenceTypes/Week3/Week3.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/06_TypeAndMemberBasics/AllOfTheTypes/AllOfTheTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/06_TypeAndMemberBasics/AllOfTheTypes/AllOfTheTypes.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/06_TypeAndMemberBasics/AllOfTheTypes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/06_TypeAndMemberBasics/AllOfTheTypes/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/06_TypeAndMemberBasics/Ch5,6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/06_TypeAndMemberBasics/Ch5,6/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/06_TypeAndMemberBasics/Ch5,6/Week4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/06_TypeAndMemberBasics/Ch5,6/Week4.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/06_TypeAndMemberBasics/Ch5,6/Week4.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/06_TypeAndMemberBasics/Ch5,6/Week4.pptx -------------------------------------------------------------------------------- /CLR_via_CSharp/06_TypeAndMemberBasics/Ch5,6/Week4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/06_TypeAndMemberBasics/Ch5,6/Week4.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/06_TypeAndMemberBasics/TypeVisibility/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/06_TypeAndMemberBasics/TypeVisibility/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/06_TypeAndMemberBasics/TypeVisibility/TypeVisibility.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/06_TypeAndMemberBasics/TypeVisibility/TypeVisibility.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/06_TypeAndMemberBasics/TypeVisibilityTests/MeaningOfLifeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/06_TypeAndMemberBasics/TypeVisibilityTests/MeaningOfLifeTests.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/06_TypeAndMemberBasics/TypeVisibilityTests/TypeVisibilityTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/06_TypeAndMemberBasics/TypeVisibilityTests/TypeVisibilityTests.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/06_TypeAndMemberBasics/VersioningExample/CompanyA/Phone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/06_TypeAndMemberBasics/VersioningExample/CompanyA/Phone.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/06_TypeAndMemberBasics/VersioningExample/CompanyB/BetterPhone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/06_TypeAndMemberBasics/VersioningExample/CompanyB/BetterPhone.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/06_TypeAndMemberBasics/VersioningExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/06_TypeAndMemberBasics/VersioningExample/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/06_TypeAndMemberBasics/VersioningExample/VersioningExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/06_TypeAndMemberBasics/VersioningExample/VersioningExample.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/06_TypeAndMemberBasics/Week4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/06_TypeAndMemberBasics/Week4.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/ByteToInt32/ByteToInt32.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/ByteToInt32/ByteToInt32.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/ByteToInt32/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/ByteToInt32/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/Chapter8/Chapter8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/Chapter8/Chapter8.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/Chapter8/Chapter8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/Chapter8/Chapter8.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/Chapter8/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/Chapter8/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/ConstructorsForReferenceTypes/ConstructorsForReferenceTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/ConstructorsForReferenceTypes/ConstructorsForReferenceTypes.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/ConstructorsForReferenceTypes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/ConstructorsForReferenceTypes/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/ConstructorsForReferenceTypes/ReferenceClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/ConstructorsForReferenceTypes/ReferenceClass.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/ConstructorsForValueTypes/ConstructorsForValueTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/ConstructorsForValueTypes/ConstructorsForValueTypes.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/ConstructorsForValueTypes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/ConstructorsForValueTypes/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/ConversionOperatorsMethods/ConversionOperatorsMethods.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/ConversionOperatorsMethods/ConversionOperatorsMethods.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/ConversionOperatorsMethods/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/ConversionOperatorsMethods/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/ExtensionMethods/ExtensionMethods.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/ExtensionMethods/ExtensionMethods.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/ExtensionMethods/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/ExtensionMethods/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/ExtensionMethods/StringBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/ExtensionMethods/StringBuilderExtensions.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/Methods.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/Methods.pptx -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/OperatorOverloads/OperatorOverloads.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/OperatorOverloads/OperatorOverloads.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/OperatorOverloads/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/OperatorOverloads/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/PartialMethods/PartialMethods.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/PartialMethods/PartialMethods.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/PartialMethods/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/PartialMethods/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/Presentation1.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/Presentation1.pptx -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/TypeConstructors/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/TypeConstructors/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/08_Methods/TypeConstructors/TypeConstructors.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/08_Methods/TypeConstructors/TypeConstructors.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/09_Parameters/DefaultAndOptional/DefaultAndOptional.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/09_Parameters/DefaultAndOptional/DefaultAndOptional.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/09_Parameters/DefaultAndOptional/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/09_Parameters/DefaultAndOptional/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/09_Parameters/ImplicitlyTypedLocalVariables/ImplicitlyTypedLocalVariables.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/09_Parameters/ImplicitlyTypedLocalVariables/ImplicitlyTypedLocalVariables.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/09_Parameters/ImplicitlyTypedLocalVariables/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/09_Parameters/ImplicitlyTypedLocalVariables/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/09_Parameters/MultipleArguments/MultipleArguments.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/09_Parameters/MultipleArguments/MultipleArguments.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/09_Parameters/MultipleArguments/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/09_Parameters/MultipleArguments/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/09_Parameters/Parameters.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/09_Parameters/Parameters.pptx -------------------------------------------------------------------------------- /CLR_via_CSharp/09_Parameters/Parameters/Arguments.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/09_Parameters/Parameters/Arguments.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/09_Parameters/Parameters/Parameters.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/09_Parameters/Parameters/Parameters.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/09_Parameters/Parameters/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/09_Parameters/Parameters/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/09_Parameters/PassByReferenceAndValue/PassByReferenceAndValue.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/09_Parameters/PassByReferenceAndValue/PassByReferenceAndValue.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/09_Parameters/PassByReferenceAndValue/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/09_Parameters/PassByReferenceAndValue/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/09_Parameters/const.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/09_Parameters/const.cpp -------------------------------------------------------------------------------- /CLR_via_CSharp/10_Properties/AnonymousTypes/AnonymousTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/10_Properties/AnonymousTypes/AnonymousTypes.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/10_Properties/AnonymousTypes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/10_Properties/AnonymousTypes/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/10_Properties/BitArray2/BitArray2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/10_Properties/BitArray2/BitArray2.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/10_Properties/BitArray2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/10_Properties/BitArray2/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/10_Properties/Events/Events.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/10_Properties/Events/Events.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/10_Properties/Events/Events.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/10_Properties/Events/Events.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/10_Properties/Events/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/10_Properties/Events/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/10_Properties/ParameterfulProperties/ParameterfulProperties.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/10_Properties/ParameterfulProperties/ParameterfulProperties.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/10_Properties/ParameterfulProperties/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/10_Properties/ParameterfulProperties/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/10_Properties/Properties.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/10_Properties/Properties.pptx -------------------------------------------------------------------------------- /CLR_via_CSharp/10_Properties/Properties/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/10_Properties/Properties/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/10_Properties/Properties/Properties.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/10_Properties/Properties/Properties.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/10_Properties/Properties/Properties.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/10_Properties/Properties/Properties.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/BookCode1/BookCode1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/BookCode1/BookCode1.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/BookCode1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/BookCode1/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/CleanedBookExample/CleanedBookExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/CleanedBookExample/CleanedBookExample.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/CleanedBookExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/CleanedBookExample/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/Events.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/Events.pptx -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/Events/BookCodeExample1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/Events/BookCodeExample1.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/Events/Devices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/Events/Devices.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/Events/Events.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/Events/Events.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/Events/MailManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/Events/MailManager.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/Events/NewMailEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/Events/NewMailEventArgs.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/Events/Program.cs: -------------------------------------------------------------------------------- 1 | using Events; 2 | 3 | MailManager.Go(); -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/JeffreyIsNeverWrong/Castaway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/JeffreyIsNeverWrong/Castaway.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/JeffreyIsNeverWrong/Mermaid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/JeffreyIsNeverWrong/Mermaid.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/JeffreyIsNeverWrong/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/JeffreyIsNeverWrong/Message.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/JeffreyIsNeverWrong/MessageInABottle.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/JeffreyIsNeverWrong/MessageInABottle.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/JeffreyIsNeverWrong/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/JeffreyIsNeverWrong/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/ResidencyPager/Devices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/ResidencyPager/Devices.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/ResidencyPager/NewPageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/ResidencyPager/NewPageEventArgs.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/ResidencyPager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/ResidencyPager/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/ResidencyPager/ResidencyPager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/ResidencyPager/ResidencyPager.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/ResidencyPager/ResidencyPagerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/ResidencyPager/ResidencyPagerManager.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/ResidencyPager2/Devices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/ResidencyPager2/Devices.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/ResidencyPager2/NewPageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/ResidencyPager2/NewPageEventArgs.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/ResidencyPager2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/ResidencyPager2/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/ResidencyPager2/ResidencyPager2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/ResidencyPager2/ResidencyPager2.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/11_Events/ResidencyPager2/ResidencyPagerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/11_Events/ResidencyPager2/ResidencyPagerManager.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/Constraints/Constraints.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/Constraints/Constraints.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/Constraints/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/Constraints/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/ConstraintsExample/ConstraintsExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/ConstraintsExample/ConstraintsExample.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/ConstraintsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/ConstraintsExample/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/Generics.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/Generics.pptx -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/Generics/Generics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/Generics/Generics.md -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/Generics/Generics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/Generics/Generics.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/Generics/GenericsPerf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/Generics/GenericsPerf.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/Generics/OperationTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/Generics/OperationTimer.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/Generics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/Generics/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/Inheritance/Inheritance.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/Inheritance/Inheritance.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/Inheritance/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/Inheritance/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/Methods/Methods.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/Methods/Methods.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/Methods/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/Methods/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/OpenClosedTypes/OpenClosedTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/OpenClosedTypes/OpenClosedTypes.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/OpenClosedTypes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/OpenClosedTypes/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/TripleSwap/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/TripleSwap/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/TripleSwap/TripleSwap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/TripleSwap/TripleSwap.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/TypeIdentity/NotThis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/TypeIdentity/NotThis.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/TypeIdentity/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/TypeIdentity/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/Variance/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/Variance/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/12_Generics/Variance/Variance.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/12_Generics/Variance/Variance.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/CallingInterfaceMethods/CallingInterfaceMethods.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/CallingInterfaceMethods/CallingInterfaceMethods.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/CallingInterfaceMethods/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/CallingInterfaceMethods/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/ChessPieces/ChessPieces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/ChessPieces/ChessPieces.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/ChessPieces/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/ChessPieces/Enums.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/ChessPieces/IPiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/ChessPieces/IPiece.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/ChessPieces/Knight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/ChessPieces/Knight.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/ChessPieces/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/ChessPieces/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/GenericInterface/GenericInterface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/GenericInterface/GenericInterface.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/GenericInterface/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/GenericInterface/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/GenericInterface2/GenericInterface2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/GenericInterface2/GenericInterface2.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/GenericInterface2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/GenericInterface2/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/ImplicitExplicit/ImplicitExplicit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/ImplicitExplicit/ImplicitExplicit.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/ImplicitExplicit/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/ImplicitExplicit/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/InterfaceConstraint/InterfaceConstraint.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/InterfaceConstraint/InterfaceConstraint.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/InterfaceConstraint/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/InterfaceConstraint/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/Interfaception/Interfaception.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/Interfaception/Interfaception.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/Interfaception/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/Interfaception/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/Interfaces Examples.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/Interfaces Examples.vsdx -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/Interfaces.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/Interfaces.pptx -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/Interfaces/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/Interfaces/Interfaces.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/Interfaces/Interfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/Interfaces/Interfaces.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/Interfaces/Interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/Interfaces/Interfaces.md -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/Interfaces/Interfaces.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/Interfaces/Interfaces.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/Interfaces/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/Interfaces/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/Interfaces/SocketPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/Interfaces/SocketPort.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/MultiInterfaceSameSignature/MultiInterfaceSameSignature.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/MultiInterfaceSameSignature/MultiInterfaceSameSignature.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/13_Interfaces/MultiInterfaceSameSignature/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/13_Interfaces/MultiInterfaceSameSignature/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/Base64/Base64.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/Base64/Base64.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/Base64/base64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/Base64/base64.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/Comparisons/Comparisons.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/Comparisons/Comparisons.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/Comparisons/Program.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/Conversions/Conversions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/Conversions/Conversions.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/Conversions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/Conversions/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/Cultural Sorts/Cultural Sorts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/Cultural Sorts/Cultural Sorts.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/Cultural Sorts/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/Cultural Sorts/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/Culture Matters/Culture Matters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/Culture Matters/Culture Matters.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/Culture Matters/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/Culture Matters/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/HelloWorldWConstruction/HelloWorldWConstruction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/HelloWorldWConstruction/HelloWorldWConstruction.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/Operations/Operations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/Operations/Operations.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/Operations/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/Operations/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/Parsing/Parsing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/Parsing/Parsing.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/Parsing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/Parsing/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/SecureString/SecureString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/SecureString/SecureString.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/SecureString/SecureString.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/SecureString/SecureString.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/SimpleEncoding/SimpleEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/SimpleEncoding/SimpleEncoding.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/SimpleEncoding/SimpleEncoding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/SimpleEncoding/SimpleEncoding.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/SimpleStringConstruction/HelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/SimpleStringConstruction/HelloWorld.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/SimpleStringConstruction/Program.cs: -------------------------------------------------------------------------------- 1 | Console.WriteLine("Hello, World!"); -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/StringInterning/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/StringInterning/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/StringInterning/StringInterning.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/StringInterning/StringInterning.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/StringInterpolation/StringInterpolation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/StringInterpolation/StringInterpolation.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/StringInterpolation/StringInterpolation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/StringInterpolation/StringInterpolation.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/Strings/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/Strings/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/Strings/Strings.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/Strings/Strings.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/Strings/Strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/Strings/Strings.md -------------------------------------------------------------------------------- /CLR_via_CSharp/14_Strings/Strings/Strings.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/14_Strings/Strings/Strings.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/BitFlags/BitFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/BitFlags/BitFlags.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/BitFlags/BitFlags.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/BitFlags/BitFlags.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/EnumeratedTypes/EnumeratedTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/EnumeratedTypes/EnumeratedTypes.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/EnumeratedTypes/EnumeratedTypes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/EnumeratedTypes/EnumeratedTypes.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/EnumeratedTypes/EnumeratedTypesAndBitFlags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/EnumeratedTypes/EnumeratedTypesAndBitFlags.md -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/EnumeratedTypes/Enums101.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/EnumeratedTypes/Enums101.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/ExtensionMethods/BlackJackExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/ExtensionMethods/BlackJackExtensions.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/ExtensionMethods/ExtensionMethods.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/ExtensionMethods/ExtensionMethods.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/ForceValuesOfEnum/ForceValuesOfEnum.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/ForceValuesOfEnum/ForceValuesOfEnum.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/ForceValuesOfEnum/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/ForceValuesOfEnum/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/HardBitFlag/FromOurCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/HardBitFlag/FromOurCode.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/HardBitFlag/HardBitFlag.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/HardBitFlag/HardBitFlag.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/LoopOverEnums/LoopOverEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/LoopOverEnums/LoopOverEnums.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/LoopOverEnums/LoopOverEnums.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/LoopOverEnums/LoopOverEnums.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/MappingeEnums/MappingEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/MappingeEnums/MappingEnums.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/MappingeEnums/MappingEnums.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/MappingeEnums/MappingEnums.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/ReallyJustNumbers/ReallyJustNumbers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/ReallyJustNumbers/ReallyJustNumbers.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/ReallyJustNumbers/ReallyJustNumbers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/ReallyJustNumbers/ReallyJustNumbers.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/SystemEnum/SystemEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/SystemEnum/SystemEnum.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/SystemEnum/SystemEnum.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/SystemEnum/SystemEnum.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/TonsOfEnums/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/TonsOfEnums/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/15_EnumsAndBitFLags/TonsOfEnums/TonsOfEnums.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/15_EnumsAndBitFLags/TonsOfEnums/TonsOfEnums.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/.gitignore -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/AnonymousTypes/AnonymousTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/AnonymousTypes/AnonymousTypes.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/AnonymousTypes/AnonymousTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/AnonymousTypes/AnonymousTypes.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/ArrayCovariance/ArrayCovariance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/ArrayCovariance/ArrayCovariance.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/ArrayCovariance/ArrayCovariance.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/ArrayCovariance/ArrayCovariance.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/ArrayInternals/ArrayInternals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/ArrayInternals/ArrayInternals.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/ArrayInternals/ArrayInternals.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/ArrayInternals/ArrayInternals.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/Arrays/Arrays.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/Arrays/Arrays.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/Arrays/Arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/Arrays/Arrays.md -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/Arrays/Arrays.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/Arrays/Arrays.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/Arrays/SimpleArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/Arrays/SimpleArray.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/Arrays/Value vs Reference Arrays.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/Arrays/Value vs Reference Arrays.vsdx -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/Casting/Casting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/Casting/Casting.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/Casting/Casting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/Casting/Casting.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/Copy/Copy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/Copy/Copy.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/Copy/Copy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/Copy/Copy.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/CopyPower/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/CopyPower/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/CopyPower/CopyPower.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/CopyPower/CopyPower.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/CopyPower/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/CopyPower/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/CopyPower/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/CopyPower/Properties/launchSettings.json -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/CopyPower/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/CopyPower/WeatherForecast.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/CopyPower/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/CopyPower/appsettings.Development.json -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/CopyPower/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/CopyPower/appsettings.json -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/ImplicitInterfaces/ImplicitInterfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/ImplicitInterfaces/ImplicitInterfaces.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/ImplicitInterfaces/ImplicitInterfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/ImplicitInterfaces/ImplicitInterfaces.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/Initialization/Initialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/Initialization/Initialization.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/Initialization/Initialization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/Initialization/Initialization.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/Multi-dimensional/Multi-Dimensional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/Multi-dimensional/Multi-Dimensional.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/Multi-dimensional/Multi-dimensional.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/Multi-dimensional/Multi-dimensional.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/Non-ZeroArray/Non-ZeroArray.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/Non-ZeroArray/Non-ZeroArray.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/Non-ZeroArray/ThisShouldBeIllegal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/Non-ZeroArray/ThisShouldBeIllegal.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/ReturningArrays/ReturnArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/ReturningArrays/ReturnArray.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/ReturningArrays/ReturningArrays.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/ReturningArrays/ReturningArrays.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/SystemArray/Program.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/SystemArray/SystemArray.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/SystemArray/SystemArray.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/UnsafeAccess/UnsafeAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/UnsafeAccess/UnsafeAccess.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/UnsafeAccess/UnsafeAccess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/UnsafeAccess/UnsafeAccess.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/ValueReference/ValueReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/ValueReference/ValueReference.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/16_Arrays/ValueReference/ValueReference.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/16_Arrays/ValueReference/ValueReference.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/17_Delegates/Action/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/17_Delegates/Action/Action.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/17_Delegates/Action/Action.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/17_Delegates/Action/Action.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/17_Delegates/DelegateChaining/DelegateChaining.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/17_Delegates/DelegateChaining/DelegateChaining.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/17_Delegates/DelegateChaining/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/17_Delegates/DelegateChaining/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/17_Delegates/DelegateEvolution/DelegateEvolution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/17_Delegates/DelegateEvolution/DelegateEvolution.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/17_Delegates/DelegateEvolution/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/17_Delegates/DelegateEvolution/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/17_Delegates/Delegates.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/17_Delegates/Delegates.pptx -------------------------------------------------------------------------------- /CLR_via_CSharp/17_Delegates/Func/Func.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/17_Delegates/Func/Func.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/17_Delegates/Func/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/17_Delegates/Func/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/17_Delegates/InitialExample/callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/17_Delegates/InitialExample/callback.c -------------------------------------------------------------------------------- /CLR_via_CSharp/17_Delegates/InstanceDelegates/InstanceDelegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/17_Delegates/InstanceDelegates/InstanceDelegates.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/17_Delegates/InstanceDelegates/InstanceDelegates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/17_Delegates/InstanceDelegates/InstanceDelegates.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/17_Delegates/StaticDelegates/Delegates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/17_Delegates/StaticDelegates/Delegates.md -------------------------------------------------------------------------------- /CLR_via_CSharp/17_Delegates/StaticDelegates/Delegates.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/17_Delegates/StaticDelegates/Delegates.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/17_Delegates/StaticDelegates/StaticDelegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/17_Delegates/StaticDelegates/StaticDelegates.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/17_Delegates/StaticDelegates/StaticDelegates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/17_Delegates/StaticDelegates/StaticDelegates.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/18_CustomAttributes/CustomAttributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/18_CustomAttributes/CustomAttributes.md -------------------------------------------------------------------------------- /CLR_via_CSharp/18_CustomAttributes/CustomAttributes/CustomAttributes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/18_CustomAttributes/CustomAttributes/CustomAttributes.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/18_CustomAttributes/CustomAttributes/CustomAttributes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/18_CustomAttributes/CustomAttributes/CustomAttributes.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/18_CustomAttributes/CustomAttributes/Program.cs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/18_CustomAttributes/CustomAttributes/Program.cs.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/18_CustomAttributes/DefineYourOwnAttribute/DefineYourOwnAttribute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/18_CustomAttributes/DefineYourOwnAttribute/DefineYourOwnAttribute.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/18_CustomAttributes/DefineYourOwnAttribute/Program.cs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/18_CustomAttributes/DefineYourOwnAttribute/Program.cs.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/18_CustomAttributes/FirstAttribute/FirstAttribute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/18_CustomAttributes/FirstAttribute/FirstAttribute.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/18_CustomAttributes/FirstAttribute/Program.cs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/18_CustomAttributes/FirstAttribute/Program.cs.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/19_NullableValueTypes/CLRSupport/CLRSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/19_NullableValueTypes/CLRSupport/CLRSupport.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/19_NullableValueTypes/CLRSupport/CLRSupport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/19_NullableValueTypes/CLRSupport/CLRSupport.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/19_NullableValueTypes/Conversions/Conversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/19_NullableValueTypes/Conversions/Conversions.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/19_NullableValueTypes/Conversions/Conversions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/19_NullableValueTypes/Conversions/Conversions.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/19_NullableValueTypes/NullCoalescing/NullCoalescing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/19_NullableValueTypes/NullCoalescing/NullCoalescing.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/19_NullableValueTypes/NullCoalescing/RememberThis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/19_NullableValueTypes/NullCoalescing/RememberThis.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/19_NullableValueTypes/NullableValueTypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/19_NullableValueTypes/NullableValueTypes.md -------------------------------------------------------------------------------- /CLR_via_CSharp/19_NullableValueTypes/NullableValueTypes/Intro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/19_NullableValueTypes/NullableValueTypes/Intro.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/19_NullableValueTypes/NullableValueTypes/NullableValueTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/19_NullableValueTypes/NullableValueTypes/NullableValueTypes.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/19_NullableValueTypes/NullableValueTypes/NullableValueTypes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/19_NullableValueTypes/NullableValueTypes/NullableValueTypes.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/19_NullableValueTypes/Playground/Playground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/19_NullableValueTypes/Playground/Playground.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/19_NullableValueTypes/Playground/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/19_NullableValueTypes/Playground/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/21_GarbageCollection/21_GarbageCollection.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/21_GarbageCollection/21_GarbageCollection.pptx -------------------------------------------------------------------------------- /CLR_via_CSharp/21_GarbageCollection/GarbageCollection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/21_GarbageCollection/GarbageCollection.md -------------------------------------------------------------------------------- /CLR_via_CSharp/24_RuntimeSerialization/ComparingSerialized.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/24_RuntimeSerialization/ComparingSerialized.txt -------------------------------------------------------------------------------- /CLR_via_CSharp/24_RuntimeSerialization/ComparingSerializedReversed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/24_RuntimeSerialization/ComparingSerializedReversed.txt -------------------------------------------------------------------------------- /CLR_via_CSharp/24_RuntimeSerialization/DataStuff/DataStuff.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/24_RuntimeSerialization/DataStuff/DataStuff.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/24_RuntimeSerialization/DataStuff/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/24_RuntimeSerialization/DataStuff/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/24_RuntimeSerialization/MakeSerializable/MakeSerializable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/24_RuntimeSerialization/MakeSerializable/MakeSerializable.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/24_RuntimeSerialization/MakeSerializable/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/24_RuntimeSerialization/MakeSerializable/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/24_RuntimeSerialization/ModernBinarySerialization/ModernBinarySerialization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/24_RuntimeSerialization/ModernBinarySerialization/ModernBinarySerialization.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/24_RuntimeSerialization/ModernBinarySerialization/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/24_RuntimeSerialization/ModernBinarySerialization/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/24_RuntimeSerialization/ModernRuntimeSerialization/ModernRuntimeSerialization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/24_RuntimeSerialization/ModernRuntimeSerialization/ModernRuntimeSerialization.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/24_RuntimeSerialization/ModernRuntimeSerialization/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/24_RuntimeSerialization/ModernRuntimeSerialization/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/24_RuntimeSerialization/RuntimeSerialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/24_RuntimeSerialization/RuntimeSerialization.md -------------------------------------------------------------------------------- /CLR_via_CSharp/24_RuntimeSerialization/RuntimeSerialization/Introduction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/24_RuntimeSerialization/RuntimeSerialization/Introduction.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/24_RuntimeSerialization/RuntimeSerialization/RuntimeSerialization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/24_RuntimeSerialization/RuntimeSerialization/RuntimeSerialization.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/24_RuntimeSerialization/RuntimeSerialization/RuntimeSerialization.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/24_RuntimeSerialization/RuntimeSerialization/RuntimeSerialization.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/24_RuntimeSerialization/SerializingBestPractices/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/24_RuntimeSerialization/SerializingBestPractices/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/24_RuntimeSerialization/SerializingBestPractices/SerializingBestPractices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/24_RuntimeSerialization/SerializingBestPractices/SerializingBestPractices.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/24_RuntimeSerialization/SerializingEnums/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/24_RuntimeSerialization/SerializingEnums/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/24_RuntimeSerialization/SerializingEnums/SerializingEnums.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/24_RuntimeSerialization/SerializingEnums/SerializingEnums.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/Intro/HelloWorld/HelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/Intro/HelloWorld/HelloWorld.csproj -------------------------------------------------------------------------------- /CLR_via_CSharp/Intro/HelloWorld/HelloWorld.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/Intro/HelloWorld/HelloWorld.sln -------------------------------------------------------------------------------- /CLR_via_CSharp/Intro/HelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/Intro/HelloWorld/Program.cs -------------------------------------------------------------------------------- /CLR_via_CSharp/Intro/Historical Code Samples/HelloWorld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/Intro/Historical Code Samples/HelloWorld.asm -------------------------------------------------------------------------------- /CLR_via_CSharp/Intro/Historical Code Samples/HelloWorld.c: -------------------------------------------------------------------------------- 1 | #include 2 | int main() 3 | { 4 | printf("Hello World"); 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /CLR_via_CSharp/Intro/Historical Code Samples/perfectlyFine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/Intro/Historical Code Samples/perfectlyFine.cpp -------------------------------------------------------------------------------- /CLR_via_CSharp/Intro/Week1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/Intro/Week1.md -------------------------------------------------------------------------------- /CLR_via_CSharp/Intro/Week1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/Intro/Week1.pdf -------------------------------------------------------------------------------- /CLR_via_CSharp/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CLR_via_CSharp/Overview.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Design_Patterns/Adapter/Adapter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Adapter/Adapter.csproj -------------------------------------------------------------------------------- /Design_Patterns/Adapter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Adapter/Program.cs -------------------------------------------------------------------------------- /Design_Patterns/Adapter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Adapter/README.md -------------------------------------------------------------------------------- /Design_Patterns/Adapter/src/Cli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Adapter/src/Cli.cs -------------------------------------------------------------------------------- /Design_Patterns/Adapter/src/TextManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Adapter/src/TextManipulator.cs -------------------------------------------------------------------------------- /Design_Patterns/Adapter/src/Transformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Adapter/src/Transformer.cs -------------------------------------------------------------------------------- /Design_Patterns/Command/Command.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Command/Command.csproj -------------------------------------------------------------------------------- /Design_Patterns/Command/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Command/Program.cs -------------------------------------------------------------------------------- /Design_Patterns/Command/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Command/README.md -------------------------------------------------------------------------------- /Design_Patterns/Command/src/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Command/src/Command.cs -------------------------------------------------------------------------------- /Design_Patterns/Command/src/CommandRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Command/src/CommandRunner.cs -------------------------------------------------------------------------------- /Design_Patterns/Command/src/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Command/src/Counter.cs -------------------------------------------------------------------------------- /Design_Patterns/Command/src/CounterCli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Command/src/CounterCli.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/Completed Exercises.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/Completed Exercises.sln -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/CompositeCompleted/CompositeCompleted.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/CompositeCompleted/CompositeCompleted.csproj -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/CompositeCompleted/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/CompositeCompleted/Program.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/CompositeCompleted/src/Cli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/CompositeCompleted/src/Cli.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/CompositeCompleted/src/FileSystem/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/CompositeCompleted/src/FileSystem/File.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/CompositeCompleted/src/FileSystem/Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/CompositeCompleted/src/FileSystem/Folder.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/CompositeCompleted/src/FileSystem/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/CompositeCompleted/src/FileSystem/Item.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/FactoryMethodCompleted/FactoryMethodCompleted.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/FactoryMethodCompleted/FactoryMethodCompleted.csproj -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/FactoryMethodCompleted/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/FactoryMethodCompleted/Program.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/FactoryMethodCompleted/src/Cli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/FactoryMethodCompleted/src/Cli.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/FactoryMethodCompleted/src/Dataset/Dataset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/FactoryMethodCompleted/src/Dataset/Dataset.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/FactoryMethodCompleted/src/Dataset/DatasetSummarizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/FactoryMethodCompleted/src/Dataset/DatasetSummarizer.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/IteratorCompleted/IteratorCompleted.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/IteratorCompleted/IteratorCompleted.csproj -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/IteratorCompleted/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/IteratorCompleted/Program.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/IteratorCompleted/src/Cli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/IteratorCompleted/src/Cli.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/IteratorCompleted/src/Iterables/ChunkedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/IteratorCompleted/src/Iterables/ChunkedList.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/IteratorCompleted/src/Iterables/FibonacciSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/IteratorCompleted/src/Iterables/FibonacciSequence.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/IteratorCompleted/src/Iterables/LazyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/IteratorCompleted/src/Iterables/LazyList.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/IteratorCompleted/src/Iterables/LinkedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/IteratorCompleted/src/Iterables/LinkedList.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/IteratorCompleted/src/Iterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/IteratorCompleted/src/Iterator.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/ProxyCompleted/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/ProxyCompleted/Program.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/ProxyCompleted/ProxyCompleted.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/ProxyCompleted/ProxyCompleted.csproj -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/ProxyCompleted/src/Cli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/ProxyCompleted/src/Cli.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/ProxyCompleted/src/Library/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/ProxyCompleted/src/Library/Image.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/ProxyCompleted/src/Library/ImageLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/ProxyCompleted/src/Library/ImageLibrary.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/ProxyCompleted/src/Library/ImageStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/ProxyCompleted/src/Library/ImageStore.cs -------------------------------------------------------------------------------- /Design_Patterns/Completed Exercises/ProxyCompleted/src/Library/LazyImageProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Completed Exercises/ProxyCompleted/src/Library/LazyImageProxy.cs -------------------------------------------------------------------------------- /Design_Patterns/Composite/Composite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Composite/Composite.csproj -------------------------------------------------------------------------------- /Design_Patterns/Composite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Composite/Program.cs -------------------------------------------------------------------------------- /Design_Patterns/Composite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Composite/README.md -------------------------------------------------------------------------------- /Design_Patterns/Composite/src/Cli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Composite/src/Cli.cs -------------------------------------------------------------------------------- /Design_Patterns/Composite/src/FileSystem/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Composite/src/FileSystem/File.cs -------------------------------------------------------------------------------- /Design_Patterns/Composite/src/FileSystem/Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Composite/src/FileSystem/Folder.cs -------------------------------------------------------------------------------- /Design_Patterns/Composite/src/FileSystem/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Composite/src/FileSystem/Item.cs -------------------------------------------------------------------------------- /Design_Patterns/Design Patterns.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Design Patterns.sln -------------------------------------------------------------------------------- /Design_Patterns/Factory Method/Factory Method.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Factory Method/Factory Method.csproj -------------------------------------------------------------------------------- /Design_Patterns/Factory Method/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Factory Method/Program.cs -------------------------------------------------------------------------------- /Design_Patterns/Factory Method/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Factory Method/README.md -------------------------------------------------------------------------------- /Design_Patterns/Factory Method/src/Cli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Factory Method/src/Cli.cs -------------------------------------------------------------------------------- /Design_Patterns/Factory Method/src/Dataset/Dataset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Factory Method/src/Dataset/Dataset.cs -------------------------------------------------------------------------------- /Design_Patterns/Factory Method/src/Dataset/DatasetSummarizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Factory Method/src/Dataset/DatasetSummarizer.cs -------------------------------------------------------------------------------- /Design_Patterns/Iterator/Iterator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Iterator/Iterator.csproj -------------------------------------------------------------------------------- /Design_Patterns/Iterator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Iterator/Program.cs -------------------------------------------------------------------------------- /Design_Patterns/Iterator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Iterator/README.md -------------------------------------------------------------------------------- /Design_Patterns/Iterator/src/Cli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Iterator/src/Cli.cs -------------------------------------------------------------------------------- /Design_Patterns/Iterator/src/Iterables/ChunkedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Iterator/src/Iterables/ChunkedList.cs -------------------------------------------------------------------------------- /Design_Patterns/Iterator/src/Iterables/FibonacciSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Iterator/src/Iterables/FibonacciSequence.cs -------------------------------------------------------------------------------- /Design_Patterns/Iterator/src/Iterables/LazyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Iterator/src/Iterables/LazyList.cs -------------------------------------------------------------------------------- /Design_Patterns/Iterator/src/Iterables/LinkedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Iterator/src/Iterables/LinkedList.cs -------------------------------------------------------------------------------- /Design_Patterns/Iterator/src/Iterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Iterator/src/Iterator.cs -------------------------------------------------------------------------------- /Design_Patterns/Proxy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Proxy/Program.cs -------------------------------------------------------------------------------- /Design_Patterns/Proxy/Proxy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Proxy/Proxy.csproj -------------------------------------------------------------------------------- /Design_Patterns/Proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Proxy/README.md -------------------------------------------------------------------------------- /Design_Patterns/Proxy/src/Cli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Proxy/src/Cli.cs -------------------------------------------------------------------------------- /Design_Patterns/Proxy/src/Library/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Proxy/src/Library/Image.cs -------------------------------------------------------------------------------- /Design_Patterns/Proxy/src/Library/ImageLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Proxy/src/Library/ImageLibrary.cs -------------------------------------------------------------------------------- /Design_Patterns/Proxy/src/Library/ImageStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Proxy/src/Library/ImageStore.cs -------------------------------------------------------------------------------- /Design_Patterns/Proxy/src/Library/LazyImageProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Proxy/src/Library/LazyImageProxy.cs -------------------------------------------------------------------------------- /Design_Patterns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/README.md -------------------------------------------------------------------------------- /Design_Patterns/Singleton/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Singleton/Program.cs -------------------------------------------------------------------------------- /Design_Patterns/Singleton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Singleton/README.md -------------------------------------------------------------------------------- /Design_Patterns/Singleton/Singleton.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Singleton/Singleton.csproj -------------------------------------------------------------------------------- /Design_Patterns/Singleton/src/Cli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Singleton/src/Cli.cs -------------------------------------------------------------------------------- /Design_Patterns/Singleton/src/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Singleton/src/Config.cs -------------------------------------------------------------------------------- /Design_Patterns/Singleton/src/ConfigEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Singleton/src/ConfigEditor.cs -------------------------------------------------------------------------------- /Design_Patterns/Singleton/src/TextTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Singleton/src/TextTransformer.cs -------------------------------------------------------------------------------- /Design_Patterns/State/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/State/Program.cs -------------------------------------------------------------------------------- /Design_Patterns/State/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/State/README.md -------------------------------------------------------------------------------- /Design_Patterns/State/State.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/State/State.csproj -------------------------------------------------------------------------------- /Design_Patterns/State/src/Cli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/State/src/Cli.cs -------------------------------------------------------------------------------- /Design_Patterns/State/src/Note.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/State/src/Note.cs -------------------------------------------------------------------------------- /Design_Patterns/State/src/NoteState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/State/src/NoteState.cs -------------------------------------------------------------------------------- /Design_Patterns/Strategy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Strategy/Program.cs -------------------------------------------------------------------------------- /Design_Patterns/Strategy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Strategy/README.md -------------------------------------------------------------------------------- /Design_Patterns/Strategy/Strategy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Strategy/Strategy.csproj -------------------------------------------------------------------------------- /Design_Patterns/Strategy/src/Cli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Strategy/src/Cli.cs -------------------------------------------------------------------------------- /Design_Patterns/Strategy/src/GuesserStrategies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Strategy/src/GuesserStrategies.cs -------------------------------------------------------------------------------- /Design_Patterns/Strategy/src/NumberGuesser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Strategy/src/NumberGuesser.cs -------------------------------------------------------------------------------- /Design_Patterns/Template Method/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Template Method/Program.cs -------------------------------------------------------------------------------- /Design_Patterns/Template Method/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Template Method/README.md -------------------------------------------------------------------------------- /Design_Patterns/Template Method/Template Method.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Template Method/Template Method.csproj -------------------------------------------------------------------------------- /Design_Patterns/Template Method/src/Cli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Template Method/src/Cli.cs -------------------------------------------------------------------------------- /Design_Patterns/Template Method/src/FileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Template Method/src/FileSystem.cs -------------------------------------------------------------------------------- /Design_Patterns/Template Method/src/MemoryFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Template Method/src/MemoryFileSystem.cs -------------------------------------------------------------------------------- /Design_Patterns/Utils/Cli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Utils/Cli.cs -------------------------------------------------------------------------------- /Design_Patterns/Utils/Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/Design_Patterns/Utils/Utils.csproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/LICENSE -------------------------------------------------------------------------------- /OO_Thought_Process/OO Materials.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/OO Materials.sln -------------------------------------------------------------------------------- /OO_Thought_Process/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/README.md -------------------------------------------------------------------------------- /OO_Thought_Process/Session 01 - Fundamental OO Concepts/Composition/ComposedShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 01 - Fundamental OO Concepts/Composition/ComposedShape.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 01 - Fundamental OO Concepts/Composition/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 01 - Fundamental OO Concepts/Composition/Location.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 01 - Fundamental OO Concepts/Composition/UncomposedShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 01 - Fundamental OO Concepts/Composition/UncomposedShape.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 01 - Fundamental OO Concepts/Encapsulation/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 01 - Fundamental OO Concepts/Encapsulation/Rectangle.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 01 - Fundamental OO Concepts/Inheritance/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 01 - Fundamental OO Concepts/Inheritance/Shape.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 01 - Fundamental OO Concepts/Polymorphism/ImproperShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 01 - Fundamental OO Concepts/Polymorphism/ImproperShape.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 01 - Fundamental OO Concepts/Polymorphism/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 01 - Fundamental OO Concepts/Polymorphism/Shape.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 01 - Fundamental OO Concepts/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 01 - Fundamental OO Concepts/Program.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 01 - Fundamental OO Concepts/Session 01 - Fundamental OO Concepts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 01 - Fundamental OO Concepts/Session 01 - Fundamental OO Concepts.csproj -------------------------------------------------------------------------------- /OO_Thought_Process/Session 01 - Fundamental OO Concepts/Session 1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 01 - Fundamental OO Concepts/Session 1.md -------------------------------------------------------------------------------- /OO_Thought_Process/Session 02 - Foundations of OO Design/Examples/Bank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 02 - Foundations of OO Design/Examples/Bank.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 02 - Foundations of OO Design/Examples/Taxi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 02 - Foundations of OO Design/Examples/Taxi.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 02 - Foundations of OO Design/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 02 - Foundations of OO Design/Program.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 02 - Foundations of OO Design/Session 02 - Foundations of OO Design.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 02 - Foundations of OO Design/Session 02 - Foundations of OO Design.csproj -------------------------------------------------------------------------------- /OO_Thought_Process/Session 02 - Foundations of OO Design/Session 2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 02 - Foundations of OO Design/Session 2.md -------------------------------------------------------------------------------- /OO_Thought_Process/Session 03 - More OO Concepts/Examples/Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 03 - More OO Concepts/Examples/Calculator.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 03 - More OO Concepts/Examples/ErrorHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 03 - More OO Concepts/Examples/ErrorHandling.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 03 - More OO Concepts/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 03 - More OO Concepts/Program.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 03 - More OO Concepts/Session 03 - More OO Concepts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 03 - More OO Concepts/Session 03 - More OO Concepts.csproj -------------------------------------------------------------------------------- /OO_Thought_Process/Session 03 - More OO Concepts/Session 3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 03 - More OO Concepts/Session 3.md -------------------------------------------------------------------------------- /OO_Thought_Process/Session 04 - Design Guidelines/Session 4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 04 - Design Guidelines/Session 4.md -------------------------------------------------------------------------------- /OO_Thought_Process/Session 05 - Mastering Inheritance and Composition/Concretization/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 05 - Mastering Inheritance and Composition/Concretization/Shape.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 05 - Mastering Inheritance and Composition/Extension/BankAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 05 - Mastering Inheritance and Composition/Extension/BankAccount.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 05 - Mastering Inheritance and Composition/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 05 - Mastering Inheritance and Composition/Program.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 05 - Mastering Inheritance and Composition/Refinement/Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 05 - Mastering Inheritance and Composition/Refinement/Calculator.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 05 - Mastering Inheritance and Composition/Session 05 - Mastering Inheritance and Composition.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 05 - Mastering Inheritance and Composition/Session 05 - Mastering Inheritance and Composition.csproj -------------------------------------------------------------------------------- /OO_Thought_Process/Session 05 - Mastering Inheritance and Composition/Session 5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 05 - Mastering Inheritance and Composition/Session 5.md -------------------------------------------------------------------------------- /OO_Thought_Process/Session 06 - Creating Frameworks/Examples/NonReusable/NonReusableShop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 06 - Creating Frameworks/Examples/NonReusable/NonReusableShop.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 06 - Creating Frameworks/Examples/NonReusable/TestShop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 06 - Creating Frameworks/Examples/NonReusable/TestShop.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 06 - Creating Frameworks/Examples/Reusable/ReusableShop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 06 - Creating Frameworks/Examples/Reusable/ReusableShop.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 06 - Creating Frameworks/Examples/Reusable/TestShop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 06 - Creating Frameworks/Examples/Reusable/TestShop.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 06 - Creating Frameworks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 06 - Creating Frameworks/Program.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 06 - Creating Frameworks/Session 06 - Creating Frameworks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 06 - Creating Frameworks/Session 06 - Creating Frameworks.csproj -------------------------------------------------------------------------------- /OO_Thought_Process/Session 06 - Creating Frameworks/Session 6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 06 - Creating Frameworks/Session 6.md -------------------------------------------------------------------------------- /OO_Thought_Process/Session 07 - Building with Composition/Examples/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 07 - Building with Composition/Examples/Employee.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 07 - Building with Composition/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 07 - Building with Composition/Program.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 07 - Building with Composition/Session 07 - Building with Composition.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 07 - Building with Composition/Session 07 - Building with Composition.csproj -------------------------------------------------------------------------------- /OO_Thought_Process/Session 07 - Building with Composition/Session 7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 07 - Building with Composition/Session 7.md -------------------------------------------------------------------------------- /OO_Thought_Process/Session 08 - Design Patterns/Session 8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 08 - Design Patterns/Session 8.md -------------------------------------------------------------------------------- /OO_Thought_Process/Session 09 - Dependency Injection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 09 - Dependency Injection/Program.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 09 - Dependency Injection/Session 09 - Dependency Injection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 09 - Dependency Injection/Session 09 - Dependency Injection.csproj -------------------------------------------------------------------------------- /OO_Thought_Process/Session 09 - Dependency Injection/Session 9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 09 - Dependency Injection/Session 9.md -------------------------------------------------------------------------------- /OO_Thought_Process/Session 09 - Dependency Injection/notes/example-uml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 09 - Dependency Injection/notes/example-uml.md -------------------------------------------------------------------------------- /OO_Thought_Process/Session 09 - Dependency Injection/src/Composition/Example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 09 - Dependency Injection/src/Composition/Example.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 09 - Dependency Injection/src/Dependency Injection/Example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 09 - Dependency Injection/src/Dependency Injection/Example.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 09 - Dependency Injection/src/Inheritance/Example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 09 - Dependency Injection/src/Inheritance/Example.cs -------------------------------------------------------------------------------- /OO_Thought_Process/Session 10 - SOLID Principles/Session 10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 10 - SOLID Principles/Session 10.md -------------------------------------------------------------------------------- /OO_Thought_Process/Session 10 - SOLID Principles/notes/dependency-inversion-uml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 10 - SOLID Principles/notes/dependency-inversion-uml.md -------------------------------------------------------------------------------- /OO_Thought_Process/Session 10 - SOLID Principles/notes/interface-segragation-uml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 10 - SOLID Principles/notes/interface-segragation-uml.md -------------------------------------------------------------------------------- /OO_Thought_Process/Session 10 - SOLID Principles/notes/liskov-substitution-uml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 10 - SOLID Principles/notes/liskov-substitution-uml.md -------------------------------------------------------------------------------- /OO_Thought_Process/Session 10 - SOLID Principles/notes/open-close-uml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 10 - SOLID Principles/notes/open-close-uml.md -------------------------------------------------------------------------------- /OO_Thought_Process/Session 10 - SOLID Principles/notes/single-responsibility-uml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/OO_Thought_Process/Session 10 - SOLID Principles/notes/single-responsibility-uml.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Flash_University/HEAD/SUPPORT.md --------------------------------------------------------------------------------