├── .gitattributes ├── .gitignore ├── 01. C# Language Basics ├── 01. Creating First C# App using Visual Studio │ ├── MyFirstApp.sln │ └── MyFirstApp │ │ ├── App.config │ │ ├── MyFirstApp.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. The System.Console class │ ├── ConsoleClassExample.sln │ └── ConsoleClassExample │ │ ├── App.config │ │ ├── ConsoleClassExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. Variables │ ├── VariablesExample.sln │ └── VariablesExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── VariablesExample.csproj ├── 04. Primitive Types │ ├── PrimitiveTypesExample.sln │ └── PrimitiveTypesExample │ │ ├── App.config │ │ ├── PrimitiveTypesExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 05. Operators │ ├── OperatorsExample.sln │ └── OperatorsExample │ │ ├── App.config │ │ ├── OperatorsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 06. If, If-else, Else-if, Nested-if │ ├── 01. If │ │ ├── IfExample.sln │ │ └── IfExample │ │ │ ├── App.config │ │ │ ├── IfExample.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── 02. If Else │ │ ├── IfElseExample.sln │ │ └── IfElseExample │ │ │ ├── App.config │ │ │ ├── IfElseExample.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── 03. Else If │ │ ├── ElseIfExample.sln │ │ └── ElseIfExample │ │ │ ├── App.config │ │ │ ├── ElseIfExample.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── 04. Nested If │ │ ├── NestedIfExample.sln │ │ └── NestedIfExample │ │ ├── App.config │ │ ├── NestedIfExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 07. Switch-Case │ ├── SwitchCaseExample.sln │ └── SwitchCaseExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── SwitchCaseExample.csproj ├── 08. While, Do-While │ ├── 01. While │ │ ├── WhileExample.sln │ │ └── WhileExample │ │ │ ├── App.config │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── WhileExample.csproj │ └── 02. Do-While │ │ ├── DoWhileExample.sln │ │ └── DoWhileExample │ │ ├── App.config │ │ ├── DoWhileExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 09. For loop │ ├── ForExample.sln │ └── ForExample │ │ ├── App.config │ │ ├── ForExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 10. Break │ ├── BreakExample.sln │ └── BreakExample │ │ ├── App.config │ │ ├── BreakExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 11. Continue │ ├── ContinueExample.sln │ └── ContinueExample │ │ ├── App.config │ │ ├── ContinueExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 12. Nested For loops │ ├── NestedFormExample.sln │ └── NestedFormExample │ │ ├── App.config │ │ ├── NestedFormExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 13. Goto │ ├── GotoExample.sln │ └── GotoExample │ ├── App.config │ ├── GotoExample.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 02. Bank Project - Getting Started ├── 01. Creating Login Form │ ├── HarshaBank.Presentation │ │ ├── App.config │ │ ├── HarshaBank.Presentation.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── HarshaBank.sln ├── 02. Creating Main Menu │ ├── HarshaBank.Presentation │ │ ├── App.config │ │ ├── HarshaBank.Presentation.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── HarshaBank.sln └── 03. Creating Customers and Accounts Menu │ ├── HarshaBank.Presentation │ ├── App.config │ ├── HarshaBank.Presentation.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs │ └── HarshaBank.sln ├── 03. OOP Basics └── 01. Creating Classes & Objects │ ├── ClassExample.sln │ ├── ClassExample │ ├── App.config │ ├── ClassExample.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs │ └── ClassLibrary1 │ ├── Class1.cs │ ├── ClassLibrary1.csproj │ └── Properties │ └── AssemblyInfo.cs ├── 04. Fields ├── 01. Understanding Fields │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── FieldsExample.sln │ └── FieldsExample │ │ ├── App.config │ │ ├── FieldsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. Access Modifiers of Fields │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── FieldsExample.sln │ └── FieldsExample │ │ ├── App.config │ │ ├── FieldsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. Playing with Fields of Multiple Objects │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── FieldsExample.sln │ └── FieldsExample │ │ ├── App.config │ │ ├── FieldsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 04. Static Fields │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── FieldsExample.sln │ └── FieldsExample │ │ ├── App.config │ │ ├── FieldsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 05. Constant Fields │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── FieldsExample.sln │ └── FieldsExample │ │ ├── App.config │ │ ├── FieldsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 06. Readonly Fields │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── FieldsExample.sln │ └── FieldsExample │ │ ├── App.config │ │ ├── FieldsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 07. Local Constants │ ├── ClassLibrary1 │ ├── Class1.cs │ ├── ClassLibrary1.csproj │ └── Properties │ │ └── AssemblyInfo.cs │ ├── FieldsExample.sln │ └── FieldsExample │ ├── App.config │ ├── FieldsExample.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 05. Methods ├── 01. Understanding Methods │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── MethodsExample.sln │ └── MethodsExample │ │ ├── App.config │ │ ├── MethodsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. Encapsulation - Part 1 │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── MethodsExample.sln │ └── MethodsExample │ │ ├── App.config │ │ ├── MethodsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. Encapsulation - Part 2 │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── MethodsExample.sln │ └── MethodsExample │ │ ├── App.config │ │ ├── MethodsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 04. Local Variables & Parameters │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── MethodsExample.sln │ └── MethodsExample │ │ ├── App.config │ │ ├── MethodsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 05. this keyword │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── MethodsExample.sln │ └── MethodsExample │ │ ├── App.config │ │ ├── MethodsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 06. Static Methods │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── MethodsExample.sln │ └── MethodsExample │ │ ├── App.config │ │ ├── MethodsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 07. Object reference as Arguments │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── MethodsExample.sln │ └── MethodsExample │ │ ├── App.config │ │ ├── MethodsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 08. Default Arguments │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── MethodsExample.sln │ └── MethodsExample │ │ ├── App.config │ │ ├── MethodsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 09. Named Arguments │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── MethodsExample.sln │ └── MethodsExample │ │ ├── App.config │ │ ├── MethodsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 10. Method Overloading │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── MethodsExample.sln │ └── MethodsExample │ │ ├── App.config │ │ ├── MethodsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 11. Parameter Modifiers - Default │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── MethodsExample.sln │ └── MethodsExample │ │ ├── App.config │ │ ├── MethodsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 12. Parameter Modifiers - ref │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── MethodsExample.sln │ └── MethodsExample │ │ ├── App.config │ │ ├── MethodsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 13. Parameter Modifiers - out │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── MethodsExample.sln │ └── MethodsExample │ │ ├── App.config │ │ ├── MethodsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 14. Parameter Modifiers - Out Declaration │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── MethodsExample.sln │ └── MethodsExample │ │ ├── App.config │ │ ├── MethodsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 15. Parameter Modifiers - in │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── MethodsExample.sln │ └── MethodsExample │ │ ├── App.config │ │ ├── MethodsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 16. ref Returns │ ├── RefReturnsExample.sln │ └── RefReturnsExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── RefReturnsExample.csproj ├── 17. Parameter Modifiers - params │ ├── ParamsExample.sln │ └── ParamsExample │ │ ├── App.config │ │ ├── ParamsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 18. Local Functions │ ├── LocalFunctionsExample.sln │ └── LocalFunctionsExample │ │ ├── App.config │ │ ├── LocalFunctionsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 19. Static Local Functions │ ├── LocalFunctionsExample.sln │ └── LocalFunctionsExample │ │ ├── App.config │ │ ├── LocalFunctionsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 20. Recursion │ ├── RecursionExample.sln │ └── RecursionExample │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── RecursionExample.csproj ├── 06. Type Conversion ├── 01. Implicit Casting │ ├── ImplicitCastingExample.sln │ └── ImplicitCastingExample │ │ ├── App.config │ │ ├── ImplicitCastingExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. Explicit Casting │ ├── ExplicitCastingExample.sln │ └── ExplicitCastingExample │ │ ├── App.config │ │ ├── ExplicitCastingExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. Parse │ ├── ParseExample.sln │ └── ParseExample │ │ ├── App.config │ │ ├── ParseExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 04. TryParse │ ├── TryParseExample.sln │ └── TryParseExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── TryParseExample.csproj └── 05. Conversion Methods │ ├── ConversionMethodsExample.sln │ └── ConversionMethodsExample │ ├── App.config │ ├── ConversionMethodsExample.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 07. Constructors ├── 01. Instance Constructors │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ConstructorsExample.sln │ └── ConstructorsExample │ │ ├── App.config │ │ ├── ConstructorsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. Static Constructor │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ConstructorsExample.sln │ └── ConstructorsExample │ │ ├── App.config │ │ ├── ConstructorsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. Constructor Overloading │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ConstructorsExample.sln │ └── ConstructorsExample │ │ ├── App.config │ │ ├── ConstructorsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 04. Object Initializer │ ├── ClassLibrary1 │ ├── Class1.cs │ ├── ClassLibrary1.csproj │ └── Properties │ │ └── AssemblyInfo.cs │ ├── ConstructorsExample.sln │ └── ConstructorsExample │ ├── App.config │ ├── ConstructorsExample.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 08. Properties & Indexers ├── 01. Creating Properties │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ConstructorsExample.sln │ └── ConstructorsExample │ │ ├── App.config │ │ ├── ConstructorsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. Readonly & Writeonly Properties │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ConstructorsExample.sln │ └── ConstructorsExample │ │ ├── App.config │ │ ├── ConstructorsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. Auto-Properties with Accessor Accessibility │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ConstructorsExample.sln │ └── ConstructorsExample │ │ ├── App.config │ │ ├── ConstructorsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 04. Auto-Implemented Property Initializers │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ConstructorsExample.sln │ └── ConstructorsExample │ │ ├── App.config │ │ ├── ConstructorsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 05. Creating Indexers │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── IndexersExample.sln │ └── IndexersExample │ │ ├── App.config │ │ ├── IndexersExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 06. Indexer Overloading │ ├── ClassLibrary1 │ ├── Class1.cs │ ├── ClassLibrary1.csproj │ └── Properties │ │ └── AssemblyInfo.cs │ ├── IndexersExample.sln │ └── IndexersExample │ ├── App.config │ ├── IndexersExample.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 09. Inheritance, Hiding, Overriding ├── 01. Creating Inheritance │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Employee.cs │ │ ├── Manager.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── SalesMan.cs │ ├── InheritanceExample.sln │ └── InheritanceExample │ │ ├── App.config │ │ ├── InheritanceExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. Types of Inheritance │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Employee.cs │ │ ├── HierarchicalInheritance.cs │ │ ├── HybridInheritance.cs │ │ ├── Manager.cs │ │ ├── MultiLevelInheritance.cs │ │ ├── MultipleInheritance.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SalesMan.cs │ │ └── SingleInheritance.cs │ ├── InheritanceExample.sln │ └── InheritanceExample │ │ ├── App.config │ │ ├── InheritanceExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. 'base' Keyword │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Employee.cs │ │ ├── Manager.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── SalesMan.cs │ ├── InheritanceExample.sln │ └── InheritanceExample │ │ ├── App.config │ │ ├── InheritanceExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 04. Parent Class's Constructor │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Employee.cs │ │ ├── Manager.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── SalesMan.cs │ ├── InheritanceExample.sln │ └── InheritanceExample │ │ ├── App.config │ │ ├── InheritanceExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 05. Method Hiding │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Employee.cs │ │ ├── Manager.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── SalesMan.cs │ ├── InheritanceExample.sln │ └── InheritanceExample │ │ ├── App.config │ │ ├── InheritanceExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 06. Method Overriding │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Employee.cs │ │ ├── Manager.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── SalesMan.cs │ ├── InheritanceExample.sln │ └── InheritanceExample │ │ ├── App.config │ │ ├── InheritanceExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 07. Sealed Classes │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Employee.cs │ │ ├── Manager.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── SalesMan.cs │ ├── InheritanceExample.sln │ └── InheritanceExample │ │ ├── App.config │ │ ├── InheritanceExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 08. Sealed Methods │ ├── ClassLibrary1 │ ├── ClassLibrary1.csproj │ ├── Employee.cs │ ├── Manager.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SalesMan.cs │ ├── InheritanceExample.sln │ └── InheritanceExample │ ├── App.config │ ├── InheritanceExample.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 10. Abstract Classes and Interfaces ├── 01. Abstract Classes │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Employee.cs │ │ ├── Manager.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── SalesMan.cs │ ├── InheritanceExample.sln │ └── InheritanceExample │ │ ├── App.config │ │ ├── InheritanceExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. Abstract Methods │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Employee.cs │ │ ├── Manager.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── SalesMan.cs │ ├── InheritanceExample.sln │ └── InheritanceExample │ │ ├── App.config │ │ ├── InheritanceExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. Creating Interfaces │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── IEmployee.cs │ │ ├── Manager.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── SalesMan.cs │ ├── InheritanceExample.sln │ └── InheritanceExample │ │ ├── App.config │ │ ├── InheritanceExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 04. Dynamic Polymorphism with Interfaces │ ├── Dynamic Polymorphism with Abstract Classes │ │ ├── ClassLibrary1 │ │ │ ├── ClassLibrary1.csproj │ │ │ ├── Employee.cs │ │ │ ├── Manager.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── SalesMan.cs │ │ ├── InheritanceExample.sln │ │ └── InheritanceExample │ │ │ ├── App.config │ │ │ ├── InheritanceExample.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── Dynamic Polymorphism with Interfaces │ │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── IEmployee.cs │ │ ├── Manager.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── SalesMan.cs │ │ ├── InheritanceExample.sln │ │ └── InheritanceExample │ │ ├── App.config │ │ ├── InheritanceExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 05. Multiple Inheritance with Interfaces │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── IEmployee.cs │ │ ├── IPerson.cs │ │ ├── Manager.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── SalesMan.cs │ ├── InheritanceExample.sln │ └── InheritanceExample │ │ ├── App.config │ │ ├── InheritanceExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 06. Interface Inheritance │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── IEmployee.cs │ │ ├── IPerson.cs │ │ ├── Manager.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── SalesMan.cs │ ├── InheritanceExample.sln │ └── InheritanceExample │ │ ├── App.config │ │ ├── InheritanceExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 07. Explicit Interface Implementation │ ├── ClassLibrary1 │ ├── ClassLibrary1.csproj │ ├── IEmployee.cs │ ├── IPerson.cs │ ├── Manager.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SalesMan.cs │ ├── InheritanceExample.sln │ └── InheritanceExample │ ├── App.config │ ├── InheritanceExample.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 11. Namespaces ├── 01. Creating Namespaces │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── CustomerEnquiry.cs │ │ ├── FrontOffice.cs │ │ ├── FrontOfficeExecutive.cs │ │ ├── HR.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── NamespacesExample.sln │ └── NamespacesExample │ │ ├── App.config │ │ ├── NamespacesExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. Nested Namespaces │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── CustomerEnquiry.cs │ │ ├── FrontOfficeExecutive.cs │ │ ├── HR.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── NamespacesExample.sln │ └── NamespacesExample │ │ ├── App.config │ │ ├── NamespacesExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. Importing Namespaces │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── CustomerEnquiry.cs │ │ ├── FrontOfficeExecutive.cs │ │ ├── HR.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── NamespacesExample.sln │ └── NamespacesExample │ │ ├── App.config │ │ ├── NamespacesExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 04. Creating Using Alias │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── CustomerEnquiry.cs │ │ ├── FrontOfficeExecutive.cs │ │ ├── HR.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── NamespacesExample.sln │ └── NamespacesExample │ │ ├── App.config │ │ ├── NamespacesExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 05. Using Static │ ├── ClassLibrary1 │ ├── ClassLibrary1.csproj │ ├── CustomerEnquiry.cs │ ├── FrontOfficeExecutive.cs │ ├── HR.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── NamespacesExample.sln │ └── NamespacesExample │ ├── App.config │ ├── NamespacesExample.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 12. Partial & Static Classes, Enumerations ├── 01. Partial Classes │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── File1.cs │ │ ├── File2.cs │ │ ├── File3.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── PartialClassesExample.sln │ └── PartialClassesExample │ │ ├── App.config │ │ ├── PartialClassesExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. Partial Methods │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── File1.cs │ │ ├── File2.cs │ │ ├── File3.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── PartialClassesExample.sln │ └── PartialClassesExample │ │ ├── App.config │ │ ├── PartialClassesExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. Static Classes │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── StaticClassesExample.sln │ └── StaticClassesExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── StaticClassesExample.csproj └── 04. Enumerations │ ├── ClassLibrary1 │ ├── ClassLibrary1.csproj │ ├── Person.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── EnumerationsExample.sln │ └── EnumerationsExample │ ├── App.config │ ├── EnumerationsExample.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 13. Structures ├── 01. Creating Structures │ ├── ClassLibrary1 │ │ ├── Category.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── StructuresExample.sln │ └── StructuresExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── StructuresExample.csproj ├── 02. Structures with Constructors │ ├── ClassLibrary1 │ │ ├── Category.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── StructuresExample.sln │ └── StructuresExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── StructuresExample.csproj ├── 03. Understanding Structures (vs) Class Practically │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── StructuresExample2.sln │ └── StructuresExample2 │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── StructuresExample2.csproj ├── 04. Readonly Structures │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ReadOnlyStructuresExample.sln │ └── ReadOnlyStructuresExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── ReadOnlyStructuresExample.csproj └── 05. Primitive Types as Structures │ ├── PrimitiveTypesAsStructures.sln │ └── PrimitiveTypesAsStructures │ ├── App.config │ ├── PrimitiveTypesAsStructures.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 14. System.Object Class ├── 01. Overview of System.Object class │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ObjectClassExample.sln │ └── ObjectClassExample │ │ ├── App.config │ │ ├── ObjectClassExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. Understanding & Overriding Methods of Object class │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ObjectClassExample.sln │ └── ObjectClassExample │ │ ├── App.config │ │ ├── ObjectClassExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. Boxing │ ├── BoxingExample.sln │ └── BoxingExample │ │ ├── App.config │ │ ├── BoxingExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 04. Unboxing │ ├── UnboxingExample.sln │ └── UnboxingExample │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── UnboxingExample.csproj ├── 15. Generics ├── 01. Generic Classes │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── GenericClassesExample.sln │ └── GenericClassesExample │ │ ├── App.config │ │ ├── GenericClassesExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. Multiple Generic Parameters │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── GenericClassesExample.sln │ └── GenericClassesExample │ │ ├── App.config │ │ ├── GenericClassesExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. Generic Constraints │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── GenericConstraintsExample.sln │ └── GenericConstraintsExample │ │ ├── App.config │ │ ├── GenericConstraintsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 04. Generic Methods │ ├── ClassLibrary1 │ ├── Class1.cs │ ├── ClassLibrary1.csproj │ └── Properties │ │ └── AssemblyInfo.cs │ ├── GenericMethodsExample.sln │ └── GenericMethodsExample │ ├── App.config │ ├── GenericMethodsExample.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 16. Handling Null ├── 01. Nullable Types │ ├── NullableTypesExample.sln │ └── NullableTypesExample │ │ ├── App.config │ │ ├── NullableTypesExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. Null Coalescing Operator │ ├── NullableTypesExample.sln │ └── NullableTypesExample │ │ ├── App.config │ │ ├── NullableTypesExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 03. Null Propagation Operator │ ├── NullPropagationOperatorExample.sln │ └── NullPropagationOperatorExample │ ├── App.config │ ├── NullPropagationOperatorExample.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 17. Extension Methods and Pattern Matching ├── 01. Extension Methods │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ExtensionMethodsExample.sln │ └── ExtensionMethodsExample │ │ ├── App.config │ │ ├── ExtensionMethodsExample.csproj │ │ ├── ProductExtensions.cs │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. Pattern Matching │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── PatternMatchingExample.sln │ └── PatternMatchingExample │ │ ├── App.config │ │ ├── PatternMatchingExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. Implicitly Typed Variables │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ImplicitlyTypedVariablesExample.sln │ └── ImplicitlyTypedVariablesExample │ │ ├── App.config │ │ ├── ImplicitlyTypedVariablesExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 04. Dynamically Typed Variables │ ├── DynamicallyTypedVariablesExample.sln │ └── DynamicallyTypedVariablesExample │ │ ├── App.config │ │ ├── DynamicallyTypedVariablesExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 05. Inner Classes │ ├── ClassLibrary1 │ ├── Class1.cs │ ├── ClassLibrary1.csproj │ └── Properties │ │ └── AssemblyInfo.cs │ ├── InnerClassesExample.sln │ └── InnerClassesExample │ ├── App.config │ ├── InnerClassesExample.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 18. GC, Destructors, IDisposable ├── 01. Destructors │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── DestructorExample.sln │ └── DestructorExample │ │ ├── App.config │ │ ├── DestructorExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. IDisposable │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── IDisposableExample.sln │ └── IDisposableExample │ │ ├── App.config │ │ ├── IDisposableExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 03. Using Declaration │ ├── ClassLibrary1 │ ├── Class1.cs │ ├── ClassLibrary1.csproj │ └── Properties │ │ └── AssemblyInfo.cs │ ├── IDisposableExample.sln │ └── IDisposableExample │ ├── App.config │ ├── IDisposableExample.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 19. Delegates & Events ├── 01. Creating Delegates │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── MyDelegate.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Sample.cs │ ├── SingleCastDelegatesExample.sln │ └── SingleCastDelegatesExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── SingleCastDelegatesExample.csproj ├── 02. Multi Cast Delegates │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── MyDelegateType.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Sample.cs │ ├── MultiCastDelegatesExample.sln │ └── MultiCastDelegatesExample │ │ ├── App.config │ │ ├── MultiCastDelegatesExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. Events │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Publisher.cs │ ├── EventsExample.sln │ └── EventsExample │ │ ├── App.config │ │ ├── EventsExample.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── Subscriber.cs ├── 04. Auto-Implemented Events │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Publisher.cs │ ├── EventsExample.sln │ └── EventsExample │ │ ├── App.config │ │ ├── EventsExample.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── Subscriber.cs ├── 05. Anonymous Methods │ └── Anonymous Methods │ │ ├── .DS_Store │ │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Publisher.cs │ │ ├── EventsExample.sln │ │ └── EventsExample │ │ ├── App.config │ │ ├── EventsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 06. Lambda Expressions │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Publisher.cs │ ├── EventsExample.sln │ └── EventsExample │ │ ├── App.config │ │ ├── EventsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 07. Inline Lambda Expressions │ └── Inline Lambda Expressions │ │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Publisher.cs │ │ ├── EventsExample.sln │ │ └── EventsExample │ │ ├── App.config │ │ ├── EventsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 08. Func │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Publisher.cs │ ├── EventsExample.sln │ └── EventsExample │ │ ├── App.config │ │ ├── EventsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 09. Action │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Publisher.cs │ ├── EventsExample.sln │ └── EventsExample │ │ ├── App.config │ │ ├── EventsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 10. Predicate │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Publisher.cs │ ├── EventsExample.sln │ └── EventsExample │ │ ├── App.config │ │ ├── EventsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 11. EventHandler │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Publisher.cs │ ├── EventsExample.sln │ └── EventsExample │ │ ├── App.config │ │ ├── EventsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 12. Expression Trees │ ├── ExpressionTreesExample.sln │ └── ExpressionTreesExample │ │ ├── App.config │ │ ├── ExpressionTreesExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 13. Expression Bodied Members │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ExpressionBodiedMembersExample.sln │ └── ExpressionBodiedMembersExample │ │ ├── App.config │ │ ├── ExpressionBodiedMembersExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 14. Switch Expression │ ├── SwitchExpressionExample.sln │ └── SwitchExpressionExample │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── SwitchExpressionExample.csproj ├── 20. Arrays ├── 01. Creating Arrays │ ├── ArraysExample.sln │ └── ArraysExample │ │ ├── App.config │ │ ├── ArraysExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. Arrays with 'for' loop │ ├── ArraysExample.sln │ └── ArraysExample │ │ ├── App.config │ │ ├── ArraysExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. Arrays with 'foreach' loop │ ├── ArraysExample.sln │ └── ArraysExample │ │ ├── App.config │ │ ├── ArraysExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 04. System.Array.IndexOf │ ├── IndexOfExample.sln │ └── IndexOfExample │ │ ├── App.config │ │ ├── IndexOfExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 05. System.Array.BinarySearch │ ├── BinarySearchExample.sln │ └── BinarySearchExample │ │ ├── App.config │ │ ├── BinarySearchExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 06. System.Array.Clear │ ├── ClearExample.sln │ └── ClearExample │ │ ├── App.config │ │ ├── ClearExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 07. System.Array.Resize │ ├── ResizeExample.sln │ └── ResizeExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── ResizeExample.csproj ├── 08. System.Array.Sort │ ├── SortExample.sln │ └── SortExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── SortExample.csproj ├── 09. System.Array.Reverse │ ├── ReverseExample.sln │ └── ReverseExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── ReverseExample.csproj ├── 10. Mult-Dim Arrays │ ├── MultiDimArraysExample.sln │ └── MultiDimArraysExample │ │ ├── App.config │ │ ├── MultiDimArraysExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 11. Jagged Arrays │ ├── JaggedArraysExample.sln │ └── JaggedArraysExample │ │ ├── App.config │ │ ├── JaggedArraysExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 12. Array of Objects │ ├── ArrayOfObjectsExample.sln │ ├── ArrayOfObjectsExample │ │ ├── App.config │ │ ├── ArrayOfObjectsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── ClassLibrary1 │ │ ├── Class1.cs │ │ ├── ClassLibrary1.csproj │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 13. CopyTo and Clone │ ├── CopyAndClone.sln │ └── CopyAndClone │ │ ├── App.config │ │ ├── CopyAndClone.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 15. Deep Copy │ ├── DeepCopyExample.sln │ └── DeepCopyExample │ ├── App.config │ ├── DeepCopyExample.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 21. Collections ├── 01. List │ ├── ListExample.sln │ └── ListExample │ │ ├── App.config │ │ ├── ListExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. Add, AddRange │ ├── AddExample.sln │ └── AddExample │ │ ├── AddExample.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. Insert, InsertRange │ ├── InsertExample.sln │ └── InsertExample │ │ ├── App.config │ │ ├── InsertExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 04. Remove, RemoveAt, RemoveRange, RemoveAll, Clear │ ├── RemoveExample.sln │ └── RemoveExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── RemoveExample.csproj ├── 05. IndexOf, BinarySearch, Contains │ ├── IndexOfListExample.sln │ └── IndexOfListExample │ │ ├── App.config │ │ ├── IndexOfListExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 06. Sort, Reverse │ ├── SortReverseExample.sln │ └── SortReverseExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── SortReverseExample.csproj ├── 07. ToArray, ForEach │ ├── ToArrayForEachExample.sln │ └── ToArrayForEachExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── ToArrayForEachExample.csproj ├── 08. Exists, Find, FindIndex, FindLast, FindLastIndex, FindAll │ ├── ExistsExample.sln │ └── ExistsExample │ │ ├── App.config │ │ ├── ExistsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 09. ConvertAll │ ├── ConvertAllExample.sln │ └── ConvertAllExample │ │ ├── App.config │ │ ├── ConvertAllExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 10. Dictionary │ ├── DictionaryExample.sln │ └── DictionaryExample │ │ ├── App.config │ │ ├── DictionaryExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 11. SortedList │ ├── SortedListExample.sln │ └── SortedListExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── SortedListExample.csproj ├── 12. Hashtable │ ├── HashtableExample.sln │ └── HashtableExample │ │ ├── App.config │ │ ├── HashtableExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 13. HashSet │ ├── HashSetExample.sln │ ├── HashSetExample │ │ ├── App.config │ │ ├── HashSetExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HashSetExample2.sln │ ├── HashSetExample2 │ │ ├── App.config │ │ ├── HashSetExample2.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HashSetExample3.sln │ └── HashSetExample3 │ │ ├── App.config │ │ ├── HashSetExample3.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 14. ArrayList │ ├── ArrayListExample.sln │ └── ArrayListExample │ │ ├── App.config │ │ ├── ArrayListExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 15. Stack │ ├── StackExample.sln │ └── StackExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── StackExample.csproj ├── 16. Queue │ ├── QueueExample.sln │ └── QueueExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── QueueExample.csproj ├── 17. Collection of Objects │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Product.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── CollectionOfObjectsExample.sln │ └── CollectionOfObjectsExample │ │ ├── App.config │ │ ├── CollectionOfObjectsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 18. Object Relations │ ├── ManyToOneExample │ │ ├── ClassLibrary1 │ │ │ ├── ClassLibrary1.csproj │ │ │ ├── Department.cs │ │ │ ├── Employee.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── ManyToOneExample.sln │ │ └── ManyToOneExample │ │ │ ├── App.config │ │ │ ├── ManyToOneExample.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── OneToManyExample │ │ ├── ClassLibrary1 │ │ │ ├── ClassLibrary1.csproj │ │ │ ├── Examination.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── Student.cs │ │ ├── OneToManyExample.sln │ │ └── OneToManyExample │ │ │ ├── App.config │ │ │ ├── OneToManyExample.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── OneToOneExample │ │ ├── ClassLibrary1 │ │ ├── Branch.cs │ │ ├── ClassLibrary1.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Student.cs │ │ ├── OneToOneExample.sln │ │ └── OneToOneExample │ │ ├── App.config │ │ ├── OneToOneExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 19. IEnumerable and IEnumerator │ ├── IEnumerableExample.sln │ └── IEnumerableExample │ │ ├── App.config │ │ ├── IEnumerableExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 20. Custom Generic IEnumerable │ ├── GenericIEnumerableExample.sln │ └── GenericIEnumerableExample │ │ ├── App.config │ │ ├── GenericIEnumerableExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 21. Iterator and Yield Return │ ├── IteratorExample.sln │ └── IteratorExample │ │ ├── App.config │ │ ├── IteratorExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 22. Custom Collections │ ├── CustomCollections.sln │ └── CustomCollections │ │ ├── App.config │ │ ├── CustomCollections.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 23. Custom ICollection │ ├── ICollectionExample.sln │ └── ICollectionExample │ │ ├── App.config │ │ ├── ICollectionExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 24. Custom IList │ ├── IListExample.sln │ └── IListExample │ │ ├── App.config │ │ ├── IListExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 25. IEquatable │ ├── IEquatableExample.sln │ └── IEquatableExample │ │ ├── App.config │ │ ├── IEquatableExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 26. IComparable │ ├── IComparableExample.sln │ └── IComparableExample │ │ ├── App.config │ │ ├── IComparableExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 27. IComparer │ ├── IComparerExample.sln │ └── IComparerExample │ │ ├── App.config │ │ ├── IComparerExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 28. Covariance │ ├── CovarianceExample.sln │ └── CovarianceExample │ │ ├── App.config │ │ ├── CovarianceExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 29. Contravariance │ ├── ContravarianceExample.sln │ └── ContravarianceExample │ ├── App.config │ ├── ContravarianceExample.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 22. Anonymous Types ├── 01. Anonymous Types │ ├── AnonymousObjectsExample.sln │ ├── AnonymousObjectsExample │ │ ├── AnonymousObjectsExample.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Person.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. Nested Anonymous Types │ ├── AnonymousObjectsExample.sln │ ├── AnonymousObjectsExample │ │ ├── AnonymousObjectsExample.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Person.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 03. Anonymous Arrays │ ├── AnonymousArraysExample.sln │ └── AnonymousArraysExample │ ├── AnonymousArraysExample.csproj │ ├── App.config │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 23. Tuples ├── 01. Tuple Class │ ├── TupleExample.sln │ └── TupleExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── TupleExample.csproj ├── 02. Value Tuples │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Customer.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ValueTupleExample.sln │ └── ValueTupleExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── ValueTupleExample.csproj ├── 03. Deconstructing │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Customer.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ValueTupleExample.sln │ └── ValueTupleExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── ValueTupleExample.csproj └── 04. Discards │ ├── ClassLibrary1 │ ├── ClassLibrary1.csproj │ ├── Customer.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── ValueTupleExample.sln │ └── ValueTupleExample │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ValueTupleExample.csproj ├── 24. Bank Project - Adding Functionality ├── 01. Setting-up Layers │ ├── HarshaBank.BusinessLogicLayer │ │ ├── Class1.cs │ │ ├── HarshaBank.BusinessLogicLayer.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Configuration │ │ ├── Class1.cs │ │ ├── HarshaBank.Configuration.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.DataAccessLayer │ │ ├── Class1.cs │ │ ├── HarshaBank.DataAccessLayer.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Entities │ │ ├── Class1.cs │ │ ├── HarshaBank.Entities.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Exceptions │ │ ├── Class1.cs │ │ ├── HarshaBank.Exceptions.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Presentation │ │ ├── App.config │ │ ├── HarshaBank.Presentation.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── HarshaBank.sln ├── 02. Creating Customer Entity │ ├── HarshaBank.BusinessLogicLayer │ │ ├── Class1.cs │ │ ├── HarshaBank.BusinessLogicLayer.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Configuration │ │ ├── Class1.cs │ │ ├── HarshaBank.Configuration.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.DataAccessLayer │ │ ├── Class1.cs │ │ ├── HarshaBank.DataAccessLayer.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Entities │ │ ├── Contracts │ │ │ └── ICustomer.cs │ │ ├── Customer.cs │ │ ├── HarshaBank.Entities.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Exceptions │ │ ├── Class1.cs │ │ ├── HarshaBank.Exceptions.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Presentation │ │ ├── App.config │ │ ├── HarshaBank.Presentation.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── HarshaBank.sln ├── 03. Adding Regions and XML Comments │ ├── HarshaBank.BusinessLogicLayer │ │ ├── Class1.cs │ │ ├── HarshaBank.BusinessLogicLayer.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Configuration │ │ ├── Class1.cs │ │ ├── HarshaBank.Configuration.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.DataAccessLayer │ │ ├── Class1.cs │ │ ├── HarshaBank.DataAccessLayer.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Entities │ │ ├── Contracts │ │ │ └── ICustomer.cs │ │ ├── Customer.cs │ │ ├── HarshaBank.Entities.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Exceptions │ │ ├── Class1.cs │ │ ├── HarshaBank.Exceptions.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Presentation │ │ ├── App.config │ │ ├── HarshaBank.Presentation.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── HarshaBank.sln ├── 04. Adding Validations to Entity Classes │ ├── HarshaBank.BusinessLogicLayer │ │ ├── Class1.cs │ │ ├── HarshaBank.BusinessLogicLayer.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Configuration │ │ ├── Class1.cs │ │ ├── HarshaBank.Configuration.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.DataAccessLayer │ │ ├── Class1.cs │ │ ├── HarshaBank.DataAccessLayer.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Entities │ │ ├── Contracts │ │ │ └── ICustomer.cs │ │ ├── Customer.cs │ │ ├── HarshaBank.Entities.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Exceptions │ │ ├── CustomerException.cs │ │ ├── HarshaBank.Exceptions.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Presentation │ │ ├── App.config │ │ ├── HarshaBank.Presentation.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── HarshaBank.sln ├── 05. Creating Customer DAL │ ├── HarshaBank.BusinessLogicLayer │ │ ├── Class1.cs │ │ ├── HarshaBank.BusinessLogicLayer.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Configuration │ │ ├── Class1.cs │ │ ├── HarshaBank.Configuration.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.DataAccessLayer │ │ ├── CustomersDataAccessLayer.cs │ │ ├── DALContracts │ │ │ └── ICustomersDataAccessLayer.cs │ │ ├── HarshaBank.DataAccessLayer.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Entities │ │ ├── Contracts │ │ │ └── ICustomer.cs │ │ ├── Customer.cs │ │ ├── HarshaBank.Entities.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Exceptions │ │ ├── CustomerException.cs │ │ ├── HarshaBank.Exceptions.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Presentation │ │ ├── App.config │ │ ├── HarshaBank.Presentation.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── HarshaBank.sln ├── 06. Adding Exception Handling in Customer DAL │ ├── HarshaBank.BusinessLogicLayer │ │ ├── Class1.cs │ │ ├── HarshaBank.BusinessLogicLayer.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Configuration │ │ ├── Class1.cs │ │ ├── HarshaBank.Configuration.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.DataAccessLayer │ │ ├── CustomersDataAccessLayer.cs │ │ ├── DALContracts │ │ │ └── ICustomersDataAccessLayer.cs │ │ ├── HarshaBank.DataAccessLayer.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Entities │ │ ├── Contracts │ │ │ └── ICustomer.cs │ │ ├── Customer.cs │ │ ├── HarshaBank.Entities.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Exceptions │ │ ├── CustomerException.cs │ │ ├── HarshaBank.Exceptions.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Presentation │ │ ├── App.config │ │ ├── HarshaBank.Presentation.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── HarshaBank.sln ├── 07. Adding Configuration Settings │ ├── HarshaBank.BusinessLogicLayer │ │ ├── Class1.cs │ │ ├── HarshaBank.BusinessLogicLayer.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Configuration │ │ ├── HarshaBank.Configuration.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Settings.cs │ ├── HarshaBank.DataAccessLayer │ │ ├── CustomersDataAccessLayer.cs │ │ ├── DALContracts │ │ │ └── ICustomersDataAccessLayer.cs │ │ ├── HarshaBank.DataAccessLayer.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Entities │ │ ├── Contracts │ │ │ └── ICustomer.cs │ │ ├── Customer.cs │ │ ├── HarshaBank.Entities.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Exceptions │ │ ├── CustomerException.cs │ │ ├── HarshaBank.Exceptions.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Presentation │ │ ├── App.config │ │ ├── HarshaBank.Presentation.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── HarshaBank.sln ├── 08. Creating Customer BLL │ ├── HarshaBank.BusinessLogicLayer │ │ ├── BALContracts │ │ │ └── ICustomersBusinessLogicLayer.cs │ │ ├── CustomersBusinessLogicLayer.cs │ │ ├── HarshaBank.BusinessLogicLayer.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Configuration │ │ ├── HarshaBank.Configuration.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Settings.cs │ ├── HarshaBank.DataAccessLayer │ │ ├── CustomersDataAccessLayer.cs │ │ ├── DALContracts │ │ │ └── ICustomersDataAccessLayer.cs │ │ ├── HarshaBank.DataAccessLayer.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Entities │ │ ├── Contracts │ │ │ └── ICustomer.cs │ │ ├── Customer.cs │ │ ├── HarshaBank.Entities.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Exceptions │ │ ├── CustomerException.cs │ │ ├── HarshaBank.Exceptions.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Presentation │ │ ├── App.config │ │ ├── HarshaBank.Presentation.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── HarshaBank.sln └── 09. Creating Customer PL - Add and List │ ├── HarshaBank.BusinessLogicLayer │ ├── BALContracts │ │ └── ICustomersBusinessLogicLayer.cs │ ├── CustomersBusinessLogicLayer.cs │ ├── HarshaBank.BusinessLogicLayer.csproj │ └── Properties │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Configuration │ ├── HarshaBank.Configuration.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Settings.cs │ ├── HarshaBank.DataAccessLayer │ ├── CustomersDataAccessLayer.cs │ ├── DALContracts │ │ └── ICustomersDataAccessLayer.cs │ ├── HarshaBank.DataAccessLayer.csproj │ └── Properties │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Entities │ ├── Contracts │ │ └── ICustomer.cs │ ├── Customer.cs │ ├── HarshaBank.Entities.csproj │ └── Properties │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Exceptions │ ├── CustomerException.cs │ ├── HarshaBank.Exceptions.csproj │ └── Properties │ │ └── AssemblyInfo.cs │ ├── HarshaBank.Presentation │ ├── App.config │ ├── CustomersPresentation.cs │ ├── HarshaBank.Presentation.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs │ └── HarshaBank.sln ├── 25. LINQ ├── 01. Linq Basics │ ├── LINQExample.sln │ └── LINQExample │ │ ├── App.config │ │ ├── LINQExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. OrderBy │ ├── OrderByExample.sln │ └── OrderByExample │ │ ├── App.config │ │ ├── OrderByExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. First and FirstOrDefault │ ├── FirstExample.sln │ └── FirstExample │ │ ├── App.config │ │ ├── FirstExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 04. Last and LastOrDefault │ ├── LastExample.sln │ └── LastExample │ │ ├── App.config │ │ ├── LastExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 05. ElementAt and ElementAtOrDefault │ ├── ElementAtExample.sln │ └── ElementAtExample │ │ ├── App.config │ │ ├── ElementAtExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 06. Single and SingleOrDefault │ ├── SingleExample.sln │ └── SingleExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── SingleExample.csproj ├── 07. Select │ ├── SelectExample.sln │ └── SelectExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── SelectExample.csproj └── 08. Min Max │ ├── MinMaxExample.sln │ └── MinMaxExample │ ├── App.config │ ├── MinMaxExample.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 26. Strings, DateTime ├── 01. String │ ├── StringExample.sln │ └── StringExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── StringExample.csproj ├── 02. How String Objects are Created │ ├── StringObjectsExample.sln │ └── StringObjectsExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── StringObjectsExample.csproj ├── 03. Converting Strings │ ├── ConvertingStringExample.sln │ └── ConvertingStringExample │ │ ├── App.config │ │ ├── ConvertingStringExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 04. Checking Strings - Part 1 │ ├── CheckingStringsExample.sln │ └── CheckingStringsExample │ │ ├── App.config │ │ ├── CheckingStringsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 05. Checking Strings - Part 2 │ ├── CheckingStringsExample.sln │ └── CheckingStringsExample │ │ ├── App.config │ │ ├── CheckingStringsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 06. Formatting Strings │ ├── FormattingStringsExample.sln │ └── FormattingStringsExample │ │ ├── App.config │ │ ├── FormattingStringsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 07. Modifying Strings │ ├── InsertExample.sln │ └── InsertExample │ │ ├── App.config │ │ ├── InsertExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 08. Strings with For Loop │ ├── StringForLoopExample.sln │ └── StringForLoopExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── StringForLoopExample.csproj ├── 09. StringBuilder │ ├── StringBuilderExample.sln │ └── StringBuilderExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── StringBuilderExample.csproj ├── 10. Methods of StringBuilder │ ├── StringBuilderExample.sln │ └── StringBuilderExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── StringBuilderExample.csproj ├── 11. DateTime │ ├── DateTimeExample.sln │ └── DateTimeExample │ │ ├── App.config │ │ ├── DateTimeExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 12. DateTime Formats │ ├── DateTimeFormatsExample.sln │ └── DateTimeFormatsExample │ │ ├── App.config │ │ ├── DateTimeFormatsExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 13. Date Substraction │ ├── SubtractDateExample.sln │ └── SubtractDateExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── SubtractDateExample.csproj ├── 14. Date Addition │ ├── AddingDatesExample.sln │ └── AddingDatesExample │ │ ├── AddingDatesExample.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 15. Math - Part 1 │ ├── MathExample.sln │ └── MathExample │ │ ├── App.config │ │ ├── MathExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 16. Math - Part 2 │ ├── MathExample.sln │ └── MathExample │ │ ├── App.config │ │ ├── MathExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 17. Regular Expressions │ ├── RegExpExample.sln │ └── RegExpExample │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── RegExpExample.csproj ├── 27. IO, Serialization, Encoding ├── 01. Binary │ ├── BinaryExample.sln │ └── BinaryExample │ │ ├── App.config │ │ ├── BinaryExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. Octal │ ├── OctalExample.sln │ └── OctalExample │ │ ├── App.config │ │ ├── OctalExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. Hexadecimal │ ├── HexdecimalExample.sln │ └── HexdecimalExample │ │ ├── App.config │ │ ├── HexdecimalExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 04. Ascii │ ├── AsciiExample.sln │ └── AsciiExample │ │ ├── App.config │ │ ├── AsciiExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 05. Unicode │ ├── UnicodeExample.sln │ └── UnicodeExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── UnicodeExample.csproj ├── 06. File │ ├── FileExample.sln │ └── FileExample │ │ ├── App.config │ │ ├── FileExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 07. File Read and Write │ ├── FileLinesExample │ │ ├── FileLinesExample.sln │ │ └── FileLinesExample │ │ │ ├── App.config │ │ │ ├── FileLinesExample.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── FileReadWriteExample │ │ ├── FileReadWriteExample.sln │ │ └── FileReadWriteExample │ │ ├── App.config │ │ ├── FileReadWriteExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 08. FileInfo │ ├── FileInfoExample.sln │ └── FileInfoExample │ │ ├── App.config │ │ ├── FileInfoExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 09. FileInfo Properties │ ├── FileInfoPropertiesExample.sln │ └── FileInfoPropertiesExample │ │ ├── App.config │ │ ├── FileInfoPropertiesExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 10. Directory │ ├── DirectoryExample.sln │ └── DirectoryExample │ │ ├── App.config │ │ ├── DirectoryExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 11. DirectoryInfo │ ├── DirectoryInfoExample.sln │ └── DirectoryInfoExample │ │ ├── App.config │ │ ├── DirectoryInfoExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 12. DirectoryInfo Properties │ ├── DirectoryInfoProperties.sln │ └── DirectoryInfoProperties │ │ ├── App.config │ │ ├── DirectoryInfoProperties.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 13. DriveInfo │ ├── DriveInfoExample.sln │ └── DriveInfoExample │ │ ├── App.config │ │ ├── DriveInfoExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 14. FileStream - Part 1 │ ├── FileStreamExample.sln │ └── FileStreamExample │ │ ├── App.config │ │ ├── FileStreamExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 15. FileStream - Part 2 │ ├── FileStreamExample.sln │ └── FileStreamExample │ │ ├── App.config │ │ ├── FileStreamExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 16. FileStream - Part 3 │ ├── FileStreamExample.sln │ └── FileStreamExample │ │ ├── App.config │ │ ├── FileStreamExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 17. StreamWriter and StreamReader - Part 1 │ ├── StreamWriterReaderExample.sln │ └── StreamWriterReaderExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── StreamWriterReaderExample.csproj ├── 18. StreamWriter and StreamReader - Part 2 │ ├── StreamWriterReaderExample.sln │ └── StreamWriterReaderExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── StreamWriterReaderExample.csproj ├── 19. BinaryWriter and BinaryReader - Part 1 │ ├── BinaryWriterReaderExample.sln │ └── BinaryWriterReaderExample │ │ ├── App.config │ │ ├── BinaryWriterReaderExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 20. BinaryWriter and BinaryReader - Part 2 │ ├── BinaryWriterReaderExample.sln │ └── BinaryWriterReaderExample │ │ ├── App.config │ │ ├── BinaryWriterReaderExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 21. Binary Serialization │ ├── BinarySerializationExample.sln │ └── BinarySerializationExample │ │ ├── App.config │ │ ├── BinarySerializationExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 22. Json Serialization │ ├── JsonSerializationExample.sln │ └── JsonSerializationExample │ │ ├── App.config │ │ ├── JsonSerializationExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── 23. Xml Serialization │ ├── XmlSerializerExample.sln │ └── XmlSerializerExample │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── XmlSerializerExample.csproj ├── 28. Exception Handling ├── 01. Try-Catch-Finally │ ├── ExceptionHandlingExample.sln │ └── ExceptionHandlingExample │ │ ├── App.config │ │ ├── ExceptionHandlingExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 02. FormatException │ ├── FormatExceptionExample.sln │ └── FormatExceptionExample │ │ ├── App.config │ │ ├── FormatExceptionExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 03. IndexOutOfRangeException │ ├── IndexOutOfRangeExceptionExample.sln │ └── IndexOutOfRangeExceptionExample │ │ ├── App.config │ │ ├── IndexOutOfRangeExceptionExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 04. NullReferenceException │ ├── NullReferenceExample.sln │ └── NullReferenceExample │ │ ├── App.config │ │ ├── NullReferenceExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 05. ArgumentNullException │ ├── ArgumentNullException.sln │ └── ArgumentNullException │ │ ├── App.config │ │ ├── ArgumentNullException.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 06. Inner Exception │ ├── InnerExceptionExample.sln │ └── InnerExceptionExample │ │ ├── App.config │ │ ├── InnerExceptionExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 07. ArgumentOutOfRangeException │ ├── ArgumentOutOfRangeExample.sln │ └── ArgumentOutOfRangeExample │ │ ├── App.config │ │ ├── ArgumentOutOfRangeExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 08. ArgumentException │ ├── ArgumentExceptionExample.sln │ └── ArgumentExceptionExample │ │ ├── App.config │ │ ├── ArgumentExceptionExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 09. InvalidOperationException │ ├── InvalidOperationExample.sln │ └── InvalidOperationExample │ │ ├── App.config │ │ ├── InvalidOperationExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 10. Custom Exceptions │ ├── CustomExceptionExample.sln │ └── CustomExceptionExample │ │ ├── App.config │ │ ├── CustomExceptionExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 11. Stack Trace │ ├── StackTraceExample.sln │ └── StackTraceExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── StackTraceExample.csproj ├── 12. Exception Logger │ ├── ExceptionLoggerExample.sln │ └── ExceptionLoggerExample │ │ ├── App.config │ │ ├── ExceptionLoggerExample.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 13. System.Exception │ ├── SystemExceptionnExample.sln │ └── SystemExceptionnExample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── SystemExceptionnExample.csproj └── 14. Catch When (or) Exception Filters │ ├── CatchWhenExample.sln │ └── CatchWhenExample │ ├── App.config │ ├── CatchWhenExample.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 29. C# 9 and 10 ├── 01. Top Level Statements │ ├── TopLevelStmt.sln │ └── TopLevelStmt │ │ ├── Another.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ └── TopLevelStmt.csproj ├── 02. File Scoped Namespaces │ ├── FileScopedExample.sln │ └── FileScopedExample │ │ ├── FileScopedExample.csproj │ │ ├── Other.cs │ │ └── Program.cs ├── 03. Global Using │ ├── GlobalUsingsExample.sln │ └── GlobalUsingsExample │ │ ├── GlobalUsings.cs │ │ ├── GlobalUsingsExample.csproj │ │ └── Program.cs ├── 04. Module Initializers │ ├── ModuleInitializerExample.sln │ └── ModuleInitializerExample │ │ ├── FinalModuleInitializer.cs │ │ ├── Initializer1.cs │ │ ├── Initializer2.cs │ │ ├── ModuleInitializerExample.csproj │ │ └── Program.cs ├── 05. Nullable Reference Types │ ├── NullableRefTypes.sln │ └── NullableRefTypes │ │ ├── NullableRefTypes.csproj │ │ └── Program.cs ├── 06. Null Forgiving Operator │ ├── NullableRefTypes.sln │ └── NullableRefTypes │ │ ├── NullableRefTypes.csproj │ │ └── Program.cs ├── 07. New Expressions │ ├── NullableRefTypes.sln │ └── NullableRefTypes │ │ ├── NullableRefTypes.csproj │ │ └── Program.cs ├── 08. Motivation to Pattern Matching │ ├── PatternMatchingExample.sln │ └── PatternMatchingExample │ │ ├── PatternMatchingExample.csproj │ │ └── Program.cs ├── 09. Type Pattern Matching │ ├── PatternMatchingExample.sln │ └── PatternMatchingExample │ │ ├── PatternMatchingExample.csproj │ │ └── Program.cs ├── 10. Switch-Case Pattern Matching │ ├── PatternMatchingExample.sln │ └── PatternMatchingExample │ │ ├── PatternMatchingExample.csproj │ │ └── Program.cs ├── 11. When Pattern Matching │ ├── PatternMatchingExample.sln │ └── PatternMatchingExample │ │ ├── PatternMatchingExample.csproj │ │ └── Program.cs ├── 12. Switch Expression Pattern Matching │ ├── PatternMatchingExample.sln │ └── PatternMatchingExample │ │ ├── PatternMatchingExample.csproj │ │ └── Program.cs ├── 13. Relational and Logical Pattern Matching │ ├── PatternMatchingExample.sln │ └── PatternMatchingExample │ │ ├── PatternMatchingExample.csproj │ │ └── Program.cs ├── 14. Property Pattern Matching │ ├── PatternMatchingExample.sln │ └── PatternMatchingExample │ │ ├── PatternMatchingExample.csproj │ │ └── Program.cs ├── 15. Tuple Pattern Matching │ ├── PatternMatchingExample.sln │ └── PatternMatchingExample │ │ ├── PatternMatchingExample.csproj │ │ └── Program.cs ├── 16. Positional Pattern Matching │ ├── PatternMatchingExample.sln │ └── PatternMatchingExample │ │ ├── PatternMatchingExample.csproj │ │ └── Program.cs ├── 17. Extended Property Pattern Matching │ ├── PatternMatchingExample.sln │ └── PatternMatchingExample │ │ ├── PatternMatchingExample.csproj │ │ └── Program.cs ├── 18. Need of Immutability │ ├── ImmutabilityExample.sln │ └── ImmutabilityExample │ │ ├── ImmutabilityExample.csproj │ │ └── Program.cs ├── 19. Immutable Classes │ ├── ImmutabilityExample.sln │ └── ImmutabilityExample │ │ ├── ImmutabilityExample.csproj │ │ └── Program.cs ├── 20. Init-Only Properties │ ├── ImmutabilityExample.sln │ └── ImmutabilityExample │ │ ├── ImmutabilityExample.csproj │ │ └── Program.cs ├── 21. Readonly Structs │ ├── ImmutabilityExample.sln │ └── ImmutabilityExample │ │ ├── ImmutabilityExample.csproj │ │ └── Program.cs ├── 22. Parameterless Struct Constructors │ ├── ImmutabilityExample.sln │ └── ImmutabilityExample │ │ ├── ImmutabilityExample.csproj │ │ └── Program.cs ├── 23. Records │ ├── RecordExample.sln │ └── RecordExample │ │ ├── Program.cs │ │ └── RecordExample.csproj ├── 24. Nested Records │ ├── RecordExample.sln │ └── RecordExample │ │ ├── Program.cs │ │ └── RecordExample.csproj ├── 25. Records Immutability │ ├── RecordExample.sln │ └── RecordExample │ │ ├── Program.cs │ │ └── RecordExample.csproj ├── 26. Records Equality │ ├── RecordExample.sln │ └── RecordExample │ │ ├── Program.cs │ │ └── RecordExample.csproj ├── 27. Records With Expression │ ├── RecordExample.sln │ └── RecordExample │ │ ├── Program.cs │ │ └── RecordExample.csproj ├── 28. Records Deconstruct │ ├── RecordExample.sln │ └── RecordExample │ │ ├── Program.cs │ │ └── RecordExample.csproj ├── 29. Records ToString │ ├── RecordExample.sln │ └── RecordExample │ │ ├── Program.cs │ │ └── RecordExample.csproj ├── 30. Records Constructor │ ├── RecordExample.sln │ └── RecordExample │ │ ├── Program.cs │ │ └── RecordExample.csproj ├── 31. Records Inheritance │ ├── RecordExample.sln │ └── RecordExample │ │ ├── Program.cs │ │ └── RecordExample.csproj ├── 32. Records Sealed ToString │ ├── RecordExample.sln │ └── RecordExample │ │ ├── Program.cs │ │ └── RecordExample.csproj ├── 33. Record Structs │ ├── RecordStructsExample.sln │ └── RecordStructsExample │ │ ├── Program.cs │ │ └── RecordStructsExample.csproj ├── 34. Command Line Arguments │ ├── Command Line Arguments - Part 1 │ │ ├── App1.sln │ │ └── App1 │ │ │ ├── App1.csproj │ │ │ └── Program.cs │ └── Command Line Arguments - Part 2 │ │ ├── App2.sln │ │ └── App2 │ │ ├── App2.csproj │ │ └── Program.cs ├── 35. Partial Methods Return Type │ ├── PartialMethodsExample.sln │ └── PartialMethodsExample │ │ ├── PartialMethodsExample.csproj │ │ ├── Program.cs │ │ ├── Student1.cs │ │ └── Student2.cs ├── 36. Static Anonymous Functions │ ├── StaticAnonymousFunctions.sln │ └── StaticAnonymousFunctions │ │ ├── Program.cs │ │ └── StaticAnonymousFunctions.csproj ├── 37. Lambda Function Return Type │ ├── LambdaExprExample.sln │ └── LambdaExprExample │ │ ├── LambdaExprExample.csproj │ │ └── Program.cs ├── 38. Constant Interpolated Strings │ ├── ConstantInterpolatedStrings.sln │ └── ConstantInterpolatedStrings │ │ ├── ConstantInterpolatedStrings.csproj │ │ └── Program.cs ├── 39. Interface Default Methods │ ├── InterfaceDefaultMethods.sln │ └── InterfaceDefaultMethods │ │ ├── InterfaceDefaultMethods.csproj │ │ └── Program.cs ├── 40. Interface Method Modifiers │ ├── InterfaceDefaultMethods.sln │ └── InterfaceDefaultMethods │ │ ├── InterfaceDefaultMethods.csproj │ │ └── Program.cs ├── 41. Interface Private Methods │ ├── InterfaceDefaultMethods.sln │ └── InterfaceDefaultMethods │ │ ├── InterfaceDefaultMethods.csproj │ │ └── Program.cs ├── 42. Interface Static Members │ ├── InterfaceDefaultMethods.sln │ └── InterfaceDefaultMethods │ │ ├── InterfaceDefaultMethods.csproj │ │ └── Program.cs └── 43. Index From End Operator │ ├── IndexFromEndExample.sln │ └── IndexFromEndExample │ ├── IndexFromEndExample.csproj │ └── Program.cs ├── 30. Threads ├── 01. Main Thread │ ├── ThreadingApp.sln │ └── ThreadingApp │ │ ├── Program.cs │ │ └── ThreadingApp.csproj ├── 02. Thread Class │ ├── ThreadingApp.sln │ └── ThreadingApp │ │ ├── Program.cs │ │ └── ThreadingApp.csproj ├── 03. Single Threaded App │ ├── ThreadingApp.sln │ └── ThreadingApp │ │ ├── Program.cs │ │ └── ThreadingApp.csproj ├── 04. Multiple Threads │ ├── ThreadingApp.sln │ └── ThreadingApp │ │ ├── Program.cs │ │ └── ThreadingApp.csproj ├── 05. Sleep │ ├── ThreadingApp.sln │ └── ThreadingApp │ │ ├── Program.cs │ │ └── ThreadingApp.csproj ├── 06. Join │ ├── ThreadingApp.sln │ └── ThreadingApp │ │ ├── Program.cs │ │ └── ThreadingApp.csproj ├── 07. Thread Priority │ ├── ThreadingApp.sln │ └── ThreadingApp │ │ ├── Program.cs │ │ └── ThreadingApp.csproj ├── 08. Interrupt │ ├── ThreadingApp.sln │ └── ThreadingApp │ │ ├── Program.cs │ │ └── ThreadingApp.csproj ├── 09. Thread Parameters │ ├── ThreadingApp.sln │ └── ThreadingApp │ │ ├── Program.cs │ │ └── ThreadingApp.csproj ├── 10. ParameterizedThreadStart │ ├── ThreadingApp.sln │ └── ThreadingApp │ │ ├── Program.cs │ │ └── ThreadingApp.csproj ├── 11. Custom Thread Object │ ├── ThreadingApp.sln │ └── ThreadingApp │ │ ├── Program.cs │ │ └── ThreadingApp.csproj ├── 12. Callback │ ├── ThreadingApp.sln │ └── ThreadingApp │ │ ├── Program.cs │ │ └── ThreadingApp.csproj ├── 13. Shared Resources │ ├── ThreadingApp.sln │ └── ThreadingApp │ │ ├── Program.cs │ │ └── ThreadingApp.csproj ├── 14. Monitor │ ├── ThreadingApp.sln │ └── ThreadingApp │ │ ├── Program.cs │ │ └── ThreadingApp.csproj ├── 15. Lock │ ├── ThreadingApp.sln │ └── ThreadingApp │ │ ├── Program.cs │ │ └── ThreadingApp.csproj ├── 16. ManualResetEvent - Part 1 │ ├── EventExample.sln │ └── EventExample │ │ ├── EventExample.csproj │ │ └── Program.cs ├── 17. ManualResetEvent - Part 2 │ ├── EventExample.sln │ └── EventExample │ │ ├── EventExample.csproj │ │ └── Program.cs ├── 18. ManualResetEvent - Part 3 │ ├── EventExample.sln │ └── EventExample │ │ ├── EventExample.csproj │ │ └── Program.cs ├── 19. AutoResetEvent │ ├── EventExample.sln │ └── EventExample │ │ ├── EventExample.csproj │ │ └── Program.cs ├── 20. Wait and Pulse - Part 1 │ ├── WaitPulseExample.sln │ └── WaitPulseExample │ │ ├── Program.cs │ │ └── WaitPulseExample.csproj ├── 21. Wait and Pulse - Part 2 │ ├── WaitPulseExample.sln │ └── WaitPulseExample │ │ ├── Program.cs │ │ └── WaitPulseExample.csproj ├── 22. Wait and Pulse - Part 3 │ ├── WaitPulseExample.sln │ └── WaitPulseExample │ │ ├── Program.cs │ │ └── WaitPulseExample.csproj ├── 23. Monitor with ManualResetEvent │ ├── WaitPulseExample.sln │ └── WaitPulseExample │ │ ├── Program.cs │ │ └── WaitPulseExample.csproj ├── 24. ConcurrentQueue │ ├── WaitPulseExample.sln │ └── WaitPulseExample │ │ ├── Program.cs │ │ └── WaitPulseExample.csproj ├── 25. CSV with Threads - Part 1 │ ├── CSVExample.sln │ └── CSVExample │ │ ├── CSVExample.csproj │ │ ├── Program.cs │ │ └── Shared.cs ├── 26. CSV with Threads - Part 2 │ ├── CSVExample.sln │ └── CSVExample │ │ ├── CSVExample.csproj │ │ ├── DataProcessor.cs │ │ ├── Program.cs │ │ └── Shared.cs ├── 27. CSV with Threads - Part 3 │ ├── CSVExample.sln │ └── CSVExample │ │ ├── CSVExample.csproj │ │ ├── DataProcessor.cs │ │ ├── Program.cs │ │ └── Shared.cs ├── 28. CSV with Threads - Part 4 │ ├── CSVExample.sln │ └── CSVExample │ │ ├── CSVExample.csproj │ │ ├── DataProcessor.cs │ │ ├── Program.cs │ │ └── Shared.cs ├── 29. Semaphore │ ├── CSVExample.sln │ └── CSVExample │ │ ├── CSVExample.csproj │ │ ├── DataProcessor.cs │ │ ├── Program.cs │ │ └── Shared.cs ├── 30. Mutex │ ├── CSVExample.sln │ └── CSVExample │ │ ├── CSVExample.csproj │ │ ├── DataProcessor.cs │ │ ├── Program.cs │ │ └── Shared.cs ├── 31. Thread Pool │ ├── CSVExample.sln │ └── CSVExample │ │ ├── CSVExample.csproj │ │ ├── DataProcessor.cs │ │ ├── Program.cs │ │ └── Shared.cs └── 32. CountDownEvent │ ├── CSVExample.sln │ └── CSVExample │ ├── CSVExample.csproj │ ├── DataProcessor.cs │ ├── Program.cs │ └── Shared.cs ├── 31. Tasks ├── 01. Task.Run │ ├── TaskExample.sln │ └── TaskExample │ │ ├── Program.cs │ │ └── TaskExample.csproj ├── 02. Stopwatch │ ├── TaskExample.sln │ └── TaskExample │ │ ├── Program.cs │ │ └── TaskExample.csproj ├── 03. Task.Factory.StartNew │ ├── TaskExample.sln │ └── TaskExample │ │ ├── Program.cs │ │ └── TaskExample.csproj ├── 04. Task.Wait │ ├── TaskExample.sln │ └── TaskExample │ │ ├── Program.cs │ │ └── TaskExample.csproj ├── 05. Task.WaitAll │ ├── TaskExample.sln │ └── TaskExample │ │ ├── Program.cs │ │ └── TaskExample.csproj ├── 06. Generic Task │ ├── TaskExample.sln │ └── TaskExample │ │ ├── Program.cs │ │ └── TaskExample.csproj ├── 07. Returning Complex Types │ ├── TaskExample.sln │ └── TaskExample │ │ ├── Program.cs │ │ └── TaskExample.csproj ├── 08. Task.WaitAny │ ├── TaskExample.sln │ └── TaskExample │ │ ├── Program.cs │ │ └── TaskExample.csproj ├── 09. Task.Delay │ ├── TaskExample.sln │ └── TaskExample │ │ ├── Program.cs │ │ └── TaskExample.csproj ├── 10. Task.ContinueWith │ ├── TaskExample.sln │ └── TaskExample │ │ ├── Program.cs │ │ └── TaskExample.csproj ├── 11. Task Exception Handling - Part 1 │ ├── TaskExample.sln │ └── TaskExample │ │ ├── Program.cs │ │ └── TaskExample.csproj ├── 12. Task Exception Handling - Part 2 │ ├── TaskExample.sln │ └── TaskExample │ │ ├── Program.cs │ │ └── TaskExample.csproj ├── 13. Continuation Chain │ ├── TaskExample.sln │ └── TaskExample │ │ ├── Program.cs │ │ └── TaskExample.csproj ├── 14. Task Cancellation │ ├── TaskExample.sln │ └── TaskExample │ │ ├── Program.cs │ │ └── TaskExample.csproj └── 15. File IO │ ├── FileIOExample.sln │ └── FileIOExample │ ├── FileIOExample.csproj │ └── Program.cs ├── 32. Asynchronous Programming ├── 01. Async and Await - Part 1 │ ├── FileIOExample.sln │ └── FileIOExample │ │ ├── FileIOExample.csproj │ │ └── Program.cs ├── 02. Async and Await - Part 2 │ ├── FileIOExample.sln │ └── FileIOExample │ │ ├── FileIOExample.csproj │ │ └── Program.cs ├── 03. Async and Await - Part 3 │ ├── FileIOExample.sln │ └── FileIOExample │ │ ├── FileIOExample.csproj │ │ └── Program.cs ├── 04. Error Handling in async methods │ ├── FileIOExample.sln │ └── FileIOExample │ │ ├── FileIOExample.csproj │ │ └── Program.cs └── 05. Debugging async methods │ ├── FileIOExample.sln │ └── FileIOExample │ ├── FileIOExample.csproj │ └── Program.cs ├── 33. C# 11 ├── 01. Raw String Literals │ ├── RawStringsExample.sln │ └── RawStringsExample │ │ ├── Program.cs │ │ └── RawStringsExample.csproj ├── 02. List Pattern │ ├── ListPatternExample.sln │ └── ListPatternExample │ │ ├── ListPatternExample.csproj │ │ └── Program.cs ├── 03. Slice Pattern │ ├── SlicePatternExample.sln │ └── SlicePatternExample │ │ ├── Program.cs │ │ └── SlicePatternExample.csproj ├── 04. Var Pattern │ ├── VarPatternExample.sln │ └── VarPatternExample │ │ ├── Program.cs │ │ └── VarPatternExample.csproj ├── 05. File Local Types │ ├── FileLocalTypesExample.sln │ └── FileLocalTypesExample │ │ ├── FileLocalTypesExample.csproj │ │ ├── Program.cs │ │ └── Service.cs ├── 06. Required Members │ ├── RequiredMembersExample.sln │ └── RequiredMembersExample │ │ ├── Person.cs │ │ ├── Program.cs │ │ └── RequiredMembersExample.csproj ├── 07. Auto Default Structs │ ├── AutoDefaultStructsExample.sln │ └── AutoDefaultStructsExample │ │ ├── AutoDefaultStructsExample.csproj │ │ ├── Point.cs │ │ └── Program.cs └── 08. Ref Fields │ ├── RefFieldsExample.sln │ └── RefFieldsExample │ ├── Program.cs │ └── RefFieldsExample.csproj └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/.gitignore -------------------------------------------------------------------------------- /01. C# Language Basics/03. Variables/VariablesExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/03. Variables/VariablesExample.sln -------------------------------------------------------------------------------- /01. C# Language Basics/03. Variables/VariablesExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/03. Variables/VariablesExample/App.config -------------------------------------------------------------------------------- /01. C# Language Basics/03. Variables/VariablesExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/03. Variables/VariablesExample/Program.cs -------------------------------------------------------------------------------- /01. C# Language Basics/04. Primitive Types/PrimitiveTypesExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/04. Primitive Types/PrimitiveTypesExample.sln -------------------------------------------------------------------------------- /01. C# Language Basics/05. Operators/OperatorsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/05. Operators/OperatorsExample.sln -------------------------------------------------------------------------------- /01. C# Language Basics/05. Operators/OperatorsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/05. Operators/OperatorsExample/App.config -------------------------------------------------------------------------------- /01. C# Language Basics/05. Operators/OperatorsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/05. Operators/OperatorsExample/Program.cs -------------------------------------------------------------------------------- /01. C# Language Basics/07. Switch-Case/SwitchCaseExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/07. Switch-Case/SwitchCaseExample.sln -------------------------------------------------------------------------------- /01. C# Language Basics/07. Switch-Case/SwitchCaseExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/07. Switch-Case/SwitchCaseExample/App.config -------------------------------------------------------------------------------- /01. C# Language Basics/07. Switch-Case/SwitchCaseExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/07. Switch-Case/SwitchCaseExample/Program.cs -------------------------------------------------------------------------------- /01. C# Language Basics/08. While, Do-While/01. While/WhileExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/08. While, Do-While/01. While/WhileExample.sln -------------------------------------------------------------------------------- /01. C# Language Basics/09. For loop/ForExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/09. For loop/ForExample.sln -------------------------------------------------------------------------------- /01. C# Language Basics/09. For loop/ForExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/09. For loop/ForExample/App.config -------------------------------------------------------------------------------- /01. C# Language Basics/09. For loop/ForExample/ForExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/09. For loop/ForExample/ForExample.csproj -------------------------------------------------------------------------------- /01. C# Language Basics/09. For loop/ForExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/09. For loop/ForExample/Program.cs -------------------------------------------------------------------------------- /01. C# Language Basics/10. Break/BreakExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/10. Break/BreakExample.sln -------------------------------------------------------------------------------- /01. C# Language Basics/10. Break/BreakExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/10. Break/BreakExample/App.config -------------------------------------------------------------------------------- /01. C# Language Basics/10. Break/BreakExample/BreakExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/10. Break/BreakExample/BreakExample.csproj -------------------------------------------------------------------------------- /01. C# Language Basics/10. Break/BreakExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/10. Break/BreakExample/Program.cs -------------------------------------------------------------------------------- /01. C# Language Basics/11. Continue/ContinueExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/11. Continue/ContinueExample.sln -------------------------------------------------------------------------------- /01. C# Language Basics/11. Continue/ContinueExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/11. Continue/ContinueExample/App.config -------------------------------------------------------------------------------- /01. C# Language Basics/11. Continue/ContinueExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/11. Continue/ContinueExample/Program.cs -------------------------------------------------------------------------------- /01. C# Language Basics/12. Nested For loops/NestedFormExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/12. Nested For loops/NestedFormExample.sln -------------------------------------------------------------------------------- /01. C# Language Basics/13. Goto/GotoExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/13. Goto/GotoExample.sln -------------------------------------------------------------------------------- /01. C# Language Basics/13. Goto/GotoExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/13. Goto/GotoExample/App.config -------------------------------------------------------------------------------- /01. C# Language Basics/13. Goto/GotoExample/GotoExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/13. Goto/GotoExample/GotoExample.csproj -------------------------------------------------------------------------------- /01. C# Language Basics/13. Goto/GotoExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/01. C# Language Basics/13. Goto/GotoExample/Program.cs -------------------------------------------------------------------------------- /03. OOP Basics/01. Creating Classes & Objects/ClassExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/03. OOP Basics/01. Creating Classes & Objects/ClassExample.sln -------------------------------------------------------------------------------- /03. OOP Basics/01. Creating Classes & Objects/ClassExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/03. OOP Basics/01. Creating Classes & Objects/ClassExample/App.config -------------------------------------------------------------------------------- /03. OOP Basics/01. Creating Classes & Objects/ClassExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/03. OOP Basics/01. Creating Classes & Objects/ClassExample/Program.cs -------------------------------------------------------------------------------- /03. OOP Basics/01. Creating Classes & Objects/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/03. OOP Basics/01. Creating Classes & Objects/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /04. Fields/01. Understanding Fields/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/01. Understanding Fields/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /04. Fields/01. Understanding Fields/FieldsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/01. Understanding Fields/FieldsExample.sln -------------------------------------------------------------------------------- /04. Fields/01. Understanding Fields/FieldsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/01. Understanding Fields/FieldsExample/App.config -------------------------------------------------------------------------------- /04. Fields/01. Understanding Fields/FieldsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/01. Understanding Fields/FieldsExample/Program.cs -------------------------------------------------------------------------------- /04. Fields/02. Access Modifiers of Fields/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/02. Access Modifiers of Fields/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /04. Fields/02. Access Modifiers of Fields/FieldsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/02. Access Modifiers of Fields/FieldsExample.sln -------------------------------------------------------------------------------- /04. Fields/02. Access Modifiers of Fields/FieldsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/02. Access Modifiers of Fields/FieldsExample/App.config -------------------------------------------------------------------------------- /04. Fields/02. Access Modifiers of Fields/FieldsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/02. Access Modifiers of Fields/FieldsExample/Program.cs -------------------------------------------------------------------------------- /04. Fields/04. Static Fields/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/04. Static Fields/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /04. Fields/04. Static Fields/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/04. Static Fields/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /04. Fields/04. Static Fields/ClassLibrary1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/04. Static Fields/ClassLibrary1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /04. Fields/04. Static Fields/FieldsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/04. Static Fields/FieldsExample.sln -------------------------------------------------------------------------------- /04. Fields/04. Static Fields/FieldsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/04. Static Fields/FieldsExample/App.config -------------------------------------------------------------------------------- /04. Fields/04. Static Fields/FieldsExample/FieldsExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/04. Static Fields/FieldsExample/FieldsExample.csproj -------------------------------------------------------------------------------- /04. Fields/04. Static Fields/FieldsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/04. Static Fields/FieldsExample/Program.cs -------------------------------------------------------------------------------- /04. Fields/04. Static Fields/FieldsExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/04. Static Fields/FieldsExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /04. Fields/05. Constant Fields/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/05. Constant Fields/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /04. Fields/05. Constant Fields/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/05. Constant Fields/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /04. Fields/05. Constant Fields/FieldsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/05. Constant Fields/FieldsExample.sln -------------------------------------------------------------------------------- /04. Fields/05. Constant Fields/FieldsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/05. Constant Fields/FieldsExample/App.config -------------------------------------------------------------------------------- /04. Fields/05. Constant Fields/FieldsExample/FieldsExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/05. Constant Fields/FieldsExample/FieldsExample.csproj -------------------------------------------------------------------------------- /04. Fields/05. Constant Fields/FieldsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/05. Constant Fields/FieldsExample/Program.cs -------------------------------------------------------------------------------- /04. Fields/06. Readonly Fields/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/06. Readonly Fields/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /04. Fields/06. Readonly Fields/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/06. Readonly Fields/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /04. Fields/06. Readonly Fields/FieldsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/06. Readonly Fields/FieldsExample.sln -------------------------------------------------------------------------------- /04. Fields/06. Readonly Fields/FieldsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/06. Readonly Fields/FieldsExample/App.config -------------------------------------------------------------------------------- /04. Fields/06. Readonly Fields/FieldsExample/FieldsExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/06. Readonly Fields/FieldsExample/FieldsExample.csproj -------------------------------------------------------------------------------- /04. Fields/06. Readonly Fields/FieldsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/06. Readonly Fields/FieldsExample/Program.cs -------------------------------------------------------------------------------- /04. Fields/07. Local Constants/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/07. Local Constants/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /04. Fields/07. Local Constants/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/07. Local Constants/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /04. Fields/07. Local Constants/FieldsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/07. Local Constants/FieldsExample.sln -------------------------------------------------------------------------------- /04. Fields/07. Local Constants/FieldsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/07. Local Constants/FieldsExample/App.config -------------------------------------------------------------------------------- /04. Fields/07. Local Constants/FieldsExample/FieldsExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/07. Local Constants/FieldsExample/FieldsExample.csproj -------------------------------------------------------------------------------- /04. Fields/07. Local Constants/FieldsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/04. Fields/07. Local Constants/FieldsExample/Program.cs -------------------------------------------------------------------------------- /05. Methods/01. Understanding Methods/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/01. Understanding Methods/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /05. Methods/01. Understanding Methods/MethodsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/01. Understanding Methods/MethodsExample.sln -------------------------------------------------------------------------------- /05. Methods/01. Understanding Methods/MethodsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/01. Understanding Methods/MethodsExample/App.config -------------------------------------------------------------------------------- /05. Methods/01. Understanding Methods/MethodsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/01. Understanding Methods/MethodsExample/Program.cs -------------------------------------------------------------------------------- /05. Methods/02. Encapsulation - Part 1/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/02. Encapsulation - Part 1/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /05. Methods/02. Encapsulation - Part 1/MethodsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/02. Encapsulation - Part 1/MethodsExample.sln -------------------------------------------------------------------------------- /05. Methods/02. Encapsulation - Part 1/MethodsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/02. Encapsulation - Part 1/MethodsExample/App.config -------------------------------------------------------------------------------- /05. Methods/02. Encapsulation - Part 1/MethodsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/02. Encapsulation - Part 1/MethodsExample/Program.cs -------------------------------------------------------------------------------- /05. Methods/03. Encapsulation - Part 2/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/03. Encapsulation - Part 2/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /05. Methods/03. Encapsulation - Part 2/MethodsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/03. Encapsulation - Part 2/MethodsExample.sln -------------------------------------------------------------------------------- /05. Methods/03. Encapsulation - Part 2/MethodsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/03. Encapsulation - Part 2/MethodsExample/App.config -------------------------------------------------------------------------------- /05. Methods/03. Encapsulation - Part 2/MethodsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/03. Encapsulation - Part 2/MethodsExample/Program.cs -------------------------------------------------------------------------------- /05. Methods/04. Local Variables & Parameters/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/04. Local Variables & Parameters/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /05. Methods/04. Local Variables & Parameters/MethodsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/04. Local Variables & Parameters/MethodsExample.sln -------------------------------------------------------------------------------- /05. Methods/05. this keyword/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/05. this keyword/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /05. Methods/05. this keyword/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/05. this keyword/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /05. Methods/05. this keyword/ClassLibrary1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/05. this keyword/ClassLibrary1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /05. Methods/05. this keyword/MethodsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/05. this keyword/MethodsExample.sln -------------------------------------------------------------------------------- /05. Methods/05. this keyword/MethodsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/05. this keyword/MethodsExample/App.config -------------------------------------------------------------------------------- /05. Methods/05. this keyword/MethodsExample/MethodsExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/05. this keyword/MethodsExample/MethodsExample.csproj -------------------------------------------------------------------------------- /05. Methods/05. this keyword/MethodsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/05. this keyword/MethodsExample/Program.cs -------------------------------------------------------------------------------- /05. Methods/06. Static Methods/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/06. Static Methods/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /05. Methods/06. Static Methods/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/06. Static Methods/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /05. Methods/06. Static Methods/MethodsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/06. Static Methods/MethodsExample.sln -------------------------------------------------------------------------------- /05. Methods/06. Static Methods/MethodsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/06. Static Methods/MethodsExample/App.config -------------------------------------------------------------------------------- /05. Methods/06. Static Methods/MethodsExample/MethodsExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/06. Static Methods/MethodsExample/MethodsExample.csproj -------------------------------------------------------------------------------- /05. Methods/06. Static Methods/MethodsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/06. Static Methods/MethodsExample/Program.cs -------------------------------------------------------------------------------- /05. Methods/07. Object reference as Arguments/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/07. Object reference as Arguments/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /05. Methods/07. Object reference as Arguments/MethodsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/07. Object reference as Arguments/MethodsExample.sln -------------------------------------------------------------------------------- /05. Methods/08. Default Arguments/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/08. Default Arguments/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /05. Methods/08. Default Arguments/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/08. Default Arguments/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /05. Methods/08. Default Arguments/MethodsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/08. Default Arguments/MethodsExample.sln -------------------------------------------------------------------------------- /05. Methods/08. Default Arguments/MethodsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/08. Default Arguments/MethodsExample/App.config -------------------------------------------------------------------------------- /05. Methods/08. Default Arguments/MethodsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/08. Default Arguments/MethodsExample/Program.cs -------------------------------------------------------------------------------- /05. Methods/09. Named Arguments/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/09. Named Arguments/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /05. Methods/09. Named Arguments/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/09. Named Arguments/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /05. Methods/09. Named Arguments/MethodsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/09. Named Arguments/MethodsExample.sln -------------------------------------------------------------------------------- /05. Methods/09. Named Arguments/MethodsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/09. Named Arguments/MethodsExample/App.config -------------------------------------------------------------------------------- /05. Methods/09. Named Arguments/MethodsExample/MethodsExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/09. Named Arguments/MethodsExample/MethodsExample.csproj -------------------------------------------------------------------------------- /05. Methods/09. Named Arguments/MethodsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/09. Named Arguments/MethodsExample/Program.cs -------------------------------------------------------------------------------- /05. Methods/10. Method Overloading/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/10. Method Overloading/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /05. Methods/10. Method Overloading/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/10. Method Overloading/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /05. Methods/10. Method Overloading/MethodsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/10. Method Overloading/MethodsExample.sln -------------------------------------------------------------------------------- /05. Methods/10. Method Overloading/MethodsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/10. Method Overloading/MethodsExample/App.config -------------------------------------------------------------------------------- /05. Methods/10. Method Overloading/MethodsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/10. Method Overloading/MethodsExample/Program.cs -------------------------------------------------------------------------------- /05. Methods/11. Parameter Modifiers - Default/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/11. Parameter Modifiers - Default/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /05. Methods/11. Parameter Modifiers - Default/MethodsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/11. Parameter Modifiers - Default/MethodsExample.sln -------------------------------------------------------------------------------- /05. Methods/12. Parameter Modifiers - ref/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/12. Parameter Modifiers - ref/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /05. Methods/12. Parameter Modifiers - ref/MethodsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/12. Parameter Modifiers - ref/MethodsExample.sln -------------------------------------------------------------------------------- /05. Methods/12. Parameter Modifiers - ref/MethodsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/12. Parameter Modifiers - ref/MethodsExample/App.config -------------------------------------------------------------------------------- /05. Methods/12. Parameter Modifiers - ref/MethodsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/12. Parameter Modifiers - ref/MethodsExample/Program.cs -------------------------------------------------------------------------------- /05. Methods/13. Parameter Modifiers - out/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/13. Parameter Modifiers - out/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /05. Methods/13. Parameter Modifiers - out/MethodsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/13. Parameter Modifiers - out/MethodsExample.sln -------------------------------------------------------------------------------- /05. Methods/13. Parameter Modifiers - out/MethodsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/13. Parameter Modifiers - out/MethodsExample/App.config -------------------------------------------------------------------------------- /05. Methods/13. Parameter Modifiers - out/MethodsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/13. Parameter Modifiers - out/MethodsExample/Program.cs -------------------------------------------------------------------------------- /05. Methods/15. Parameter Modifiers - in/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/15. Parameter Modifiers - in/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /05. Methods/15. Parameter Modifiers - in/MethodsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/15. Parameter Modifiers - in/MethodsExample.sln -------------------------------------------------------------------------------- /05. Methods/15. Parameter Modifiers - in/MethodsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/15. Parameter Modifiers - in/MethodsExample/App.config -------------------------------------------------------------------------------- /05. Methods/15. Parameter Modifiers - in/MethodsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/15. Parameter Modifiers - in/MethodsExample/Program.cs -------------------------------------------------------------------------------- /05. Methods/16. ref Returns/RefReturnsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/16. ref Returns/RefReturnsExample.sln -------------------------------------------------------------------------------- /05. Methods/16. ref Returns/RefReturnsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/16. ref Returns/RefReturnsExample/App.config -------------------------------------------------------------------------------- /05. Methods/16. ref Returns/RefReturnsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/16. ref Returns/RefReturnsExample/Program.cs -------------------------------------------------------------------------------- /05. Methods/17. Parameter Modifiers - params/ParamsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/17. Parameter Modifiers - params/ParamsExample.sln -------------------------------------------------------------------------------- /05. Methods/17. Parameter Modifiers - params/ParamsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/17. Parameter Modifiers - params/ParamsExample/App.config -------------------------------------------------------------------------------- /05. Methods/17. Parameter Modifiers - params/ParamsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/17. Parameter Modifiers - params/ParamsExample/Program.cs -------------------------------------------------------------------------------- /05. Methods/18. Local Functions/LocalFunctionsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/18. Local Functions/LocalFunctionsExample.sln -------------------------------------------------------------------------------- /05. Methods/18. Local Functions/LocalFunctionsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/18. Local Functions/LocalFunctionsExample/App.config -------------------------------------------------------------------------------- /05. Methods/18. Local Functions/LocalFunctionsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/18. Local Functions/LocalFunctionsExample/Program.cs -------------------------------------------------------------------------------- /05. Methods/19. Static Local Functions/LocalFunctionsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/19. Static Local Functions/LocalFunctionsExample.sln -------------------------------------------------------------------------------- /05. Methods/20. Recursion/RecursionExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/20. Recursion/RecursionExample.sln -------------------------------------------------------------------------------- /05. Methods/20. Recursion/RecursionExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/20. Recursion/RecursionExample/App.config -------------------------------------------------------------------------------- /05. Methods/20. Recursion/RecursionExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/20. Recursion/RecursionExample/Program.cs -------------------------------------------------------------------------------- /05. Methods/20. Recursion/RecursionExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/20. Recursion/RecursionExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /05. Methods/20. Recursion/RecursionExample/RecursionExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/05. Methods/20. Recursion/RecursionExample/RecursionExample.csproj -------------------------------------------------------------------------------- /06. Type Conversion/01. Implicit Casting/ImplicitCastingExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/06. Type Conversion/01. Implicit Casting/ImplicitCastingExample.sln -------------------------------------------------------------------------------- /06. Type Conversion/02. Explicit Casting/ExplicitCastingExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/06. Type Conversion/02. Explicit Casting/ExplicitCastingExample.sln -------------------------------------------------------------------------------- /06. Type Conversion/03. Parse/ParseExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/06. Type Conversion/03. Parse/ParseExample.sln -------------------------------------------------------------------------------- /06. Type Conversion/03. Parse/ParseExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/06. Type Conversion/03. Parse/ParseExample/App.config -------------------------------------------------------------------------------- /06. Type Conversion/03. Parse/ParseExample/ParseExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/06. Type Conversion/03. Parse/ParseExample/ParseExample.csproj -------------------------------------------------------------------------------- /06. Type Conversion/03. Parse/ParseExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/06. Type Conversion/03. Parse/ParseExample/Program.cs -------------------------------------------------------------------------------- /06. Type Conversion/03. Parse/ParseExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/06. Type Conversion/03. Parse/ParseExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /06. Type Conversion/04. TryParse/TryParseExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/06. Type Conversion/04. TryParse/TryParseExample.sln -------------------------------------------------------------------------------- /06. Type Conversion/04. TryParse/TryParseExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/06. Type Conversion/04. TryParse/TryParseExample/App.config -------------------------------------------------------------------------------- /06. Type Conversion/04. TryParse/TryParseExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/06. Type Conversion/04. TryParse/TryParseExample/Program.cs -------------------------------------------------------------------------------- /07. Constructors/01. Instance Constructors/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/07. Constructors/01. Instance Constructors/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /07. Constructors/01. Instance Constructors/ConstructorsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/07. Constructors/01. Instance Constructors/ConstructorsExample.sln -------------------------------------------------------------------------------- /07. Constructors/02. Static Constructor/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/07. Constructors/02. Static Constructor/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /07. Constructors/02. Static Constructor/ConstructorsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/07. Constructors/02. Static Constructor/ConstructorsExample.sln -------------------------------------------------------------------------------- /07. Constructors/03. Constructor Overloading/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/07. Constructors/03. Constructor Overloading/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /07. Constructors/03. Constructor Overloading/ConstructorsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/07. Constructors/03. Constructor Overloading/ConstructorsExample.sln -------------------------------------------------------------------------------- /07. Constructors/04. Object Initializer/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/07. Constructors/04. Object Initializer/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /07. Constructors/04. Object Initializer/ConstructorsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/07. Constructors/04. Object Initializer/ConstructorsExample.sln -------------------------------------------------------------------------------- /08. Properties & Indexers/05. Creating Indexers/IndexersExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/08. Properties & Indexers/05. Creating Indexers/IndexersExample.sln -------------------------------------------------------------------------------- /08. Properties & Indexers/06. Indexer Overloading/IndexersExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/08. Properties & Indexers/06. Indexer Overloading/IndexersExample.sln -------------------------------------------------------------------------------- /11. Namespaces/01. Creating Namespaces/ClassLibrary1/FrontOffice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/01. Creating Namespaces/ClassLibrary1/FrontOffice.cs -------------------------------------------------------------------------------- /11. Namespaces/01. Creating Namespaces/ClassLibrary1/HR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/01. Creating Namespaces/ClassLibrary1/HR.cs -------------------------------------------------------------------------------- /11. Namespaces/01. Creating Namespaces/NamespacesExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/01. Creating Namespaces/NamespacesExample.sln -------------------------------------------------------------------------------- /11. Namespaces/01. Creating Namespaces/NamespacesExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/01. Creating Namespaces/NamespacesExample/App.config -------------------------------------------------------------------------------- /11. Namespaces/01. Creating Namespaces/NamespacesExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/01. Creating Namespaces/NamespacesExample/Program.cs -------------------------------------------------------------------------------- /11. Namespaces/02. Nested Namespaces/ClassLibrary1/CustomerEnquiry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/02. Nested Namespaces/ClassLibrary1/CustomerEnquiry.cs -------------------------------------------------------------------------------- /11. Namespaces/02. Nested Namespaces/ClassLibrary1/HR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/02. Nested Namespaces/ClassLibrary1/HR.cs -------------------------------------------------------------------------------- /11. Namespaces/02. Nested Namespaces/NamespacesExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/02. Nested Namespaces/NamespacesExample.sln -------------------------------------------------------------------------------- /11. Namespaces/02. Nested Namespaces/NamespacesExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/02. Nested Namespaces/NamespacesExample/App.config -------------------------------------------------------------------------------- /11. Namespaces/02. Nested Namespaces/NamespacesExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/02. Nested Namespaces/NamespacesExample/Program.cs -------------------------------------------------------------------------------- /11. Namespaces/03. Importing Namespaces/ClassLibrary1/HR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/03. Importing Namespaces/ClassLibrary1/HR.cs -------------------------------------------------------------------------------- /11. Namespaces/03. Importing Namespaces/NamespacesExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/03. Importing Namespaces/NamespacesExample.sln -------------------------------------------------------------------------------- /11. Namespaces/03. Importing Namespaces/NamespacesExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/03. Importing Namespaces/NamespacesExample/App.config -------------------------------------------------------------------------------- /11. Namespaces/03. Importing Namespaces/NamespacesExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/03. Importing Namespaces/NamespacesExample/Program.cs -------------------------------------------------------------------------------- /11. Namespaces/04. Creating Using Alias/ClassLibrary1/HR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/04. Creating Using Alias/ClassLibrary1/HR.cs -------------------------------------------------------------------------------- /11. Namespaces/04. Creating Using Alias/NamespacesExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/04. Creating Using Alias/NamespacesExample.sln -------------------------------------------------------------------------------- /11. Namespaces/04. Creating Using Alias/NamespacesExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/04. Creating Using Alias/NamespacesExample/App.config -------------------------------------------------------------------------------- /11. Namespaces/04. Creating Using Alias/NamespacesExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/04. Creating Using Alias/NamespacesExample/Program.cs -------------------------------------------------------------------------------- /11. Namespaces/05. Using Static/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/05. Using Static/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /11. Namespaces/05. Using Static/ClassLibrary1/CustomerEnquiry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/05. Using Static/ClassLibrary1/CustomerEnquiry.cs -------------------------------------------------------------------------------- /11. Namespaces/05. Using Static/ClassLibrary1/FrontOfficeExecutive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/05. Using Static/ClassLibrary1/FrontOfficeExecutive.cs -------------------------------------------------------------------------------- /11. Namespaces/05. Using Static/ClassLibrary1/HR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/05. Using Static/ClassLibrary1/HR.cs -------------------------------------------------------------------------------- /11. Namespaces/05. Using Static/NamespacesExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/05. Using Static/NamespacesExample.sln -------------------------------------------------------------------------------- /11. Namespaces/05. Using Static/NamespacesExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/05. Using Static/NamespacesExample/App.config -------------------------------------------------------------------------------- /11. Namespaces/05. Using Static/NamespacesExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/11. Namespaces/05. Using Static/NamespacesExample/Program.cs -------------------------------------------------------------------------------- /13. Structures/01. Creating Structures/ClassLibrary1/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/13. Structures/01. Creating Structures/ClassLibrary1/Category.cs -------------------------------------------------------------------------------- /13. Structures/01. Creating Structures/StructuresExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/13. Structures/01. Creating Structures/StructuresExample.sln -------------------------------------------------------------------------------- /13. Structures/01. Creating Structures/StructuresExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/13. Structures/01. Creating Structures/StructuresExample/App.config -------------------------------------------------------------------------------- /13. Structures/01. Creating Structures/StructuresExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/13. Structures/01. Creating Structures/StructuresExample/Program.cs -------------------------------------------------------------------------------- /13. Structures/02. Structures with Constructors/StructuresExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/13. Structures/02. Structures with Constructors/StructuresExample.sln -------------------------------------------------------------------------------- /13. Structures/04. Readonly Structures/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/13. Structures/04. Readonly Structures/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /13. Structures/04. Readonly Structures/ReadOnlyStructuresExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/13. Structures/04. Readonly Structures/ReadOnlyStructuresExample.sln -------------------------------------------------------------------------------- /14. System.Object Class/03. Boxing/BoxingExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/14. System.Object Class/03. Boxing/BoxingExample.sln -------------------------------------------------------------------------------- /14. System.Object Class/03. Boxing/BoxingExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/14. System.Object Class/03. Boxing/BoxingExample/App.config -------------------------------------------------------------------------------- /14. System.Object Class/03. Boxing/BoxingExample/BoxingExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/14. System.Object Class/03. Boxing/BoxingExample/BoxingExample.csproj -------------------------------------------------------------------------------- /14. System.Object Class/03. Boxing/BoxingExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/14. System.Object Class/03. Boxing/BoxingExample/Program.cs -------------------------------------------------------------------------------- /14. System.Object Class/04. Unboxing/UnboxingExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/14. System.Object Class/04. Unboxing/UnboxingExample.sln -------------------------------------------------------------------------------- /14. System.Object Class/04. Unboxing/UnboxingExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/14. System.Object Class/04. Unboxing/UnboxingExample/App.config -------------------------------------------------------------------------------- /14. System.Object Class/04. Unboxing/UnboxingExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/14. System.Object Class/04. Unboxing/UnboxingExample/Program.cs -------------------------------------------------------------------------------- /15. Generics/01. Generic Classes/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/15. Generics/01. Generic Classes/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /15. Generics/01. Generic Classes/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/15. Generics/01. Generic Classes/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /15. Generics/01. Generic Classes/GenericClassesExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/15. Generics/01. Generic Classes/GenericClassesExample.sln -------------------------------------------------------------------------------- /15. Generics/01. Generic Classes/GenericClassesExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/15. Generics/01. Generic Classes/GenericClassesExample/App.config -------------------------------------------------------------------------------- /15. Generics/01. Generic Classes/GenericClassesExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/15. Generics/01. Generic Classes/GenericClassesExample/Program.cs -------------------------------------------------------------------------------- /15. Generics/02. Multiple Generic Parameters/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/15. Generics/02. Multiple Generic Parameters/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /15. Generics/03. Generic Constraints/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/15. Generics/03. Generic Constraints/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /15. Generics/03. Generic Constraints/GenericConstraintsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/15. Generics/03. Generic Constraints/GenericConstraintsExample.sln -------------------------------------------------------------------------------- /15. Generics/04. Generic Methods/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/15. Generics/04. Generic Methods/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /15. Generics/04. Generic Methods/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/15. Generics/04. Generic Methods/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /15. Generics/04. Generic Methods/GenericMethodsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/15. Generics/04. Generic Methods/GenericMethodsExample.sln -------------------------------------------------------------------------------- /15. Generics/04. Generic Methods/GenericMethodsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/15. Generics/04. Generic Methods/GenericMethodsExample/App.config -------------------------------------------------------------------------------- /15. Generics/04. Generic Methods/GenericMethodsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/15. Generics/04. Generic Methods/GenericMethodsExample/Program.cs -------------------------------------------------------------------------------- /16. Handling Null/01. Nullable Types/NullableTypesExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/16. Handling Null/01. Nullable Types/NullableTypesExample.sln -------------------------------------------------------------------------------- /16. Handling Null/01. Nullable Types/NullableTypesExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/16. Handling Null/01. Nullable Types/NullableTypesExample/App.config -------------------------------------------------------------------------------- /16. Handling Null/01. Nullable Types/NullableTypesExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/16. Handling Null/01. Nullable Types/NullableTypesExample/Program.cs -------------------------------------------------------------------------------- /19. Delegates & Events/01. Creating Delegates/ClassLibrary1/Sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/01. Creating Delegates/ClassLibrary1/Sample.cs -------------------------------------------------------------------------------- /19. Delegates & Events/03. Events/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/03. Events/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /19. Delegates & Events/03. Events/ClassLibrary1/Publisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/03. Events/ClassLibrary1/Publisher.cs -------------------------------------------------------------------------------- /19. Delegates & Events/03. Events/EventsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/03. Events/EventsExample.sln -------------------------------------------------------------------------------- /19. Delegates & Events/03. Events/EventsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/03. Events/EventsExample/App.config -------------------------------------------------------------------------------- /19. Delegates & Events/03. Events/EventsExample/EventsExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/03. Events/EventsExample/EventsExample.csproj -------------------------------------------------------------------------------- /19. Delegates & Events/03. Events/EventsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/03. Events/EventsExample/Program.cs -------------------------------------------------------------------------------- /19. Delegates & Events/03. Events/EventsExample/Subscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/03. Events/EventsExample/Subscriber.cs -------------------------------------------------------------------------------- /19. Delegates & Events/04. Auto-Implemented Events/EventsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/04. Auto-Implemented Events/EventsExample.sln -------------------------------------------------------------------------------- /19. Delegates & Events/06. Lambda Expressions/EventsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/06. Lambda Expressions/EventsExample.sln -------------------------------------------------------------------------------- /19. Delegates & Events/08. Func/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/08. Func/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /19. Delegates & Events/08. Func/ClassLibrary1/Publisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/08. Func/ClassLibrary1/Publisher.cs -------------------------------------------------------------------------------- /19. Delegates & Events/08. Func/EventsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/08. Func/EventsExample.sln -------------------------------------------------------------------------------- /19. Delegates & Events/08. Func/EventsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/08. Func/EventsExample/App.config -------------------------------------------------------------------------------- /19. Delegates & Events/08. Func/EventsExample/EventsExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/08. Func/EventsExample/EventsExample.csproj -------------------------------------------------------------------------------- /19. Delegates & Events/08. Func/EventsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/08. Func/EventsExample/Program.cs -------------------------------------------------------------------------------- /19. Delegates & Events/09. Action/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/09. Action/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /19. Delegates & Events/09. Action/ClassLibrary1/Publisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/09. Action/ClassLibrary1/Publisher.cs -------------------------------------------------------------------------------- /19. Delegates & Events/09. Action/EventsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/09. Action/EventsExample.sln -------------------------------------------------------------------------------- /19. Delegates & Events/09. Action/EventsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/09. Action/EventsExample/App.config -------------------------------------------------------------------------------- /19. Delegates & Events/09. Action/EventsExample/EventsExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/09. Action/EventsExample/EventsExample.csproj -------------------------------------------------------------------------------- /19. Delegates & Events/09. Action/EventsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/09. Action/EventsExample/Program.cs -------------------------------------------------------------------------------- /19. Delegates & Events/10. Predicate/ClassLibrary1/Publisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/10. Predicate/ClassLibrary1/Publisher.cs -------------------------------------------------------------------------------- /19. Delegates & Events/10. Predicate/EventsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/10. Predicate/EventsExample.sln -------------------------------------------------------------------------------- /19. Delegates & Events/10. Predicate/EventsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/10. Predicate/EventsExample/App.config -------------------------------------------------------------------------------- /19. Delegates & Events/10. Predicate/EventsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/10. Predicate/EventsExample/Program.cs -------------------------------------------------------------------------------- /19. Delegates & Events/11. EventHandler/ClassLibrary1/Publisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/11. EventHandler/ClassLibrary1/Publisher.cs -------------------------------------------------------------------------------- /19. Delegates & Events/11. EventHandler/EventsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/11. EventHandler/EventsExample.sln -------------------------------------------------------------------------------- /19. Delegates & Events/11. EventHandler/EventsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/11. EventHandler/EventsExample/App.config -------------------------------------------------------------------------------- /19. Delegates & Events/11. EventHandler/EventsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/19. Delegates & Events/11. EventHandler/EventsExample/Program.cs -------------------------------------------------------------------------------- /20. Arrays/01. Creating Arrays/ArraysExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/01. Creating Arrays/ArraysExample.sln -------------------------------------------------------------------------------- /20. Arrays/01. Creating Arrays/ArraysExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/01. Creating Arrays/ArraysExample/App.config -------------------------------------------------------------------------------- /20. Arrays/01. Creating Arrays/ArraysExample/ArraysExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/01. Creating Arrays/ArraysExample/ArraysExample.csproj -------------------------------------------------------------------------------- /20. Arrays/01. Creating Arrays/ArraysExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/01. Creating Arrays/ArraysExample/Program.cs -------------------------------------------------------------------------------- /20. Arrays/02. Arrays with 'for' loop/ArraysExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/02. Arrays with 'for' loop/ArraysExample.sln -------------------------------------------------------------------------------- /20. Arrays/02. Arrays with 'for' loop/ArraysExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/02. Arrays with 'for' loop/ArraysExample/App.config -------------------------------------------------------------------------------- /20. Arrays/02. Arrays with 'for' loop/ArraysExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/02. Arrays with 'for' loop/ArraysExample/Program.cs -------------------------------------------------------------------------------- /20. Arrays/03. Arrays with 'foreach' loop/ArraysExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/03. Arrays with 'foreach' loop/ArraysExample.sln -------------------------------------------------------------------------------- /20. Arrays/03. Arrays with 'foreach' loop/ArraysExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/03. Arrays with 'foreach' loop/ArraysExample/App.config -------------------------------------------------------------------------------- /20. Arrays/03. Arrays with 'foreach' loop/ArraysExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/03. Arrays with 'foreach' loop/ArraysExample/Program.cs -------------------------------------------------------------------------------- /20. Arrays/04. System.Array.IndexOf/IndexOfExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/04. System.Array.IndexOf/IndexOfExample.sln -------------------------------------------------------------------------------- /20. Arrays/04. System.Array.IndexOf/IndexOfExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/04. System.Array.IndexOf/IndexOfExample/App.config -------------------------------------------------------------------------------- /20. Arrays/04. System.Array.IndexOf/IndexOfExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/04. System.Array.IndexOf/IndexOfExample/Program.cs -------------------------------------------------------------------------------- /20. Arrays/05. System.Array.BinarySearch/BinarySearchExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/05. System.Array.BinarySearch/BinarySearchExample.sln -------------------------------------------------------------------------------- /20. Arrays/06. System.Array.Clear/ClearExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/06. System.Array.Clear/ClearExample.sln -------------------------------------------------------------------------------- /20. Arrays/06. System.Array.Clear/ClearExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/06. System.Array.Clear/ClearExample/App.config -------------------------------------------------------------------------------- /20. Arrays/06. System.Array.Clear/ClearExample/ClearExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/06. System.Array.Clear/ClearExample/ClearExample.csproj -------------------------------------------------------------------------------- /20. Arrays/06. System.Array.Clear/ClearExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/06. System.Array.Clear/ClearExample/Program.cs -------------------------------------------------------------------------------- /20. Arrays/07. System.Array.Resize/ResizeExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/07. System.Array.Resize/ResizeExample.sln -------------------------------------------------------------------------------- /20. Arrays/07. System.Array.Resize/ResizeExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/07. System.Array.Resize/ResizeExample/App.config -------------------------------------------------------------------------------- /20. Arrays/07. System.Array.Resize/ResizeExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/07. System.Array.Resize/ResizeExample/Program.cs -------------------------------------------------------------------------------- /20. Arrays/07. System.Array.Resize/ResizeExample/ResizeExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/07. System.Array.Resize/ResizeExample/ResizeExample.csproj -------------------------------------------------------------------------------- /20. Arrays/08. System.Array.Sort/SortExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/08. System.Array.Sort/SortExample.sln -------------------------------------------------------------------------------- /20. Arrays/08. System.Array.Sort/SortExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/08. System.Array.Sort/SortExample/App.config -------------------------------------------------------------------------------- /20. Arrays/08. System.Array.Sort/SortExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/08. System.Array.Sort/SortExample/Program.cs -------------------------------------------------------------------------------- /20. Arrays/08. System.Array.Sort/SortExample/SortExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/08. System.Array.Sort/SortExample/SortExample.csproj -------------------------------------------------------------------------------- /20. Arrays/09. System.Array.Reverse/ReverseExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/09. System.Array.Reverse/ReverseExample.sln -------------------------------------------------------------------------------- /20. Arrays/09. System.Array.Reverse/ReverseExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/09. System.Array.Reverse/ReverseExample/App.config -------------------------------------------------------------------------------- /20. Arrays/09. System.Array.Reverse/ReverseExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/09. System.Array.Reverse/ReverseExample/Program.cs -------------------------------------------------------------------------------- /20. Arrays/10. Mult-Dim Arrays/MultiDimArraysExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/10. Mult-Dim Arrays/MultiDimArraysExample.sln -------------------------------------------------------------------------------- /20. Arrays/10. Mult-Dim Arrays/MultiDimArraysExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/10. Mult-Dim Arrays/MultiDimArraysExample/App.config -------------------------------------------------------------------------------- /20. Arrays/10. Mult-Dim Arrays/MultiDimArraysExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/10. Mult-Dim Arrays/MultiDimArraysExample/Program.cs -------------------------------------------------------------------------------- /20. Arrays/11. Jagged Arrays/JaggedArraysExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/11. Jagged Arrays/JaggedArraysExample.sln -------------------------------------------------------------------------------- /20. Arrays/11. Jagged Arrays/JaggedArraysExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/11. Jagged Arrays/JaggedArraysExample/App.config -------------------------------------------------------------------------------- /20. Arrays/11. Jagged Arrays/JaggedArraysExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/11. Jagged Arrays/JaggedArraysExample/Program.cs -------------------------------------------------------------------------------- /20. Arrays/12. Array of Objects/ArrayOfObjectsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/12. Array of Objects/ArrayOfObjectsExample.sln -------------------------------------------------------------------------------- /20. Arrays/12. Array of Objects/ArrayOfObjectsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/12. Array of Objects/ArrayOfObjectsExample/App.config -------------------------------------------------------------------------------- /20. Arrays/12. Array of Objects/ArrayOfObjectsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/12. Array of Objects/ArrayOfObjectsExample/Program.cs -------------------------------------------------------------------------------- /20. Arrays/12. Array of Objects/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/12. Array of Objects/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /20. Arrays/12. Array of Objects/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/12. Array of Objects/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /20. Arrays/13. CopyTo and Clone/CopyAndClone.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/13. CopyTo and Clone/CopyAndClone.sln -------------------------------------------------------------------------------- /20. Arrays/13. CopyTo and Clone/CopyAndClone/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/13. CopyTo and Clone/CopyAndClone/App.config -------------------------------------------------------------------------------- /20. Arrays/13. CopyTo and Clone/CopyAndClone/CopyAndClone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/13. CopyTo and Clone/CopyAndClone/CopyAndClone.csproj -------------------------------------------------------------------------------- /20. Arrays/13. CopyTo and Clone/CopyAndClone/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/13. CopyTo and Clone/CopyAndClone/Program.cs -------------------------------------------------------------------------------- /20. Arrays/15. Deep Copy/DeepCopyExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/15. Deep Copy/DeepCopyExample.sln -------------------------------------------------------------------------------- /20. Arrays/15. Deep Copy/DeepCopyExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/15. Deep Copy/DeepCopyExample/App.config -------------------------------------------------------------------------------- /20. Arrays/15. Deep Copy/DeepCopyExample/DeepCopyExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/15. Deep Copy/DeepCopyExample/DeepCopyExample.csproj -------------------------------------------------------------------------------- /20. Arrays/15. Deep Copy/DeepCopyExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/15. Deep Copy/DeepCopyExample/Program.cs -------------------------------------------------------------------------------- /20. Arrays/15. Deep Copy/DeepCopyExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/20. Arrays/15. Deep Copy/DeepCopyExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /21. Collections/01. List/ListExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/01. List/ListExample.sln -------------------------------------------------------------------------------- /21. Collections/01. List/ListExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/01. List/ListExample/App.config -------------------------------------------------------------------------------- /21. Collections/01. List/ListExample/ListExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/01. List/ListExample/ListExample.csproj -------------------------------------------------------------------------------- /21. Collections/01. List/ListExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/01. List/ListExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/01. List/ListExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/01. List/ListExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /21. Collections/02. Add, AddRange/AddExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/02. Add, AddRange/AddExample.sln -------------------------------------------------------------------------------- /21. Collections/02. Add, AddRange/AddExample/AddExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/02. Add, AddRange/AddExample/AddExample.csproj -------------------------------------------------------------------------------- /21. Collections/02. Add, AddRange/AddExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/02. Add, AddRange/AddExample/App.config -------------------------------------------------------------------------------- /21. Collections/02. Add, AddRange/AddExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/02. Add, AddRange/AddExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/03. Insert, InsertRange/InsertExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/03. Insert, InsertRange/InsertExample.sln -------------------------------------------------------------------------------- /21. Collections/03. Insert, InsertRange/InsertExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/03. Insert, InsertRange/InsertExample/App.config -------------------------------------------------------------------------------- /21. Collections/03. Insert, InsertRange/InsertExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/03. Insert, InsertRange/InsertExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/06. Sort, Reverse/SortReverseExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/06. Sort, Reverse/SortReverseExample.sln -------------------------------------------------------------------------------- /21. Collections/06. Sort, Reverse/SortReverseExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/06. Sort, Reverse/SortReverseExample/App.config -------------------------------------------------------------------------------- /21. Collections/06. Sort, Reverse/SortReverseExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/06. Sort, Reverse/SortReverseExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/07. ToArray, ForEach/ToArrayForEachExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/07. ToArray, ForEach/ToArrayForEachExample.sln -------------------------------------------------------------------------------- /21. Collections/07. ToArray, ForEach/ToArrayForEachExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/07. ToArray, ForEach/ToArrayForEachExample/App.config -------------------------------------------------------------------------------- /21. Collections/07. ToArray, ForEach/ToArrayForEachExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/07. ToArray, ForEach/ToArrayForEachExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/09. ConvertAll/ConvertAllExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/09. ConvertAll/ConvertAllExample.sln -------------------------------------------------------------------------------- /21. Collections/09. ConvertAll/ConvertAllExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/09. ConvertAll/ConvertAllExample/App.config -------------------------------------------------------------------------------- /21. Collections/09. ConvertAll/ConvertAllExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/09. ConvertAll/ConvertAllExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/10. Dictionary/DictionaryExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/10. Dictionary/DictionaryExample.sln -------------------------------------------------------------------------------- /21. Collections/10. Dictionary/DictionaryExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/10. Dictionary/DictionaryExample/App.config -------------------------------------------------------------------------------- /21. Collections/10. Dictionary/DictionaryExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/10. Dictionary/DictionaryExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/11. SortedList/SortedListExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/11. SortedList/SortedListExample.sln -------------------------------------------------------------------------------- /21. Collections/11. SortedList/SortedListExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/11. SortedList/SortedListExample/App.config -------------------------------------------------------------------------------- /21. Collections/11. SortedList/SortedListExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/11. SortedList/SortedListExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/12. Hashtable/HashtableExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/12. Hashtable/HashtableExample.sln -------------------------------------------------------------------------------- /21. Collections/12. Hashtable/HashtableExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/12. Hashtable/HashtableExample/App.config -------------------------------------------------------------------------------- /21. Collections/12. Hashtable/HashtableExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/12. Hashtable/HashtableExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/13. HashSet/HashSetExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/13. HashSet/HashSetExample.sln -------------------------------------------------------------------------------- /21. Collections/13. HashSet/HashSetExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/13. HashSet/HashSetExample/App.config -------------------------------------------------------------------------------- /21. Collections/13. HashSet/HashSetExample/HashSetExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/13. HashSet/HashSetExample/HashSetExample.csproj -------------------------------------------------------------------------------- /21. Collections/13. HashSet/HashSetExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/13. HashSet/HashSetExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/13. HashSet/HashSetExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/13. HashSet/HashSetExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /21. Collections/13. HashSet/HashSetExample2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/13. HashSet/HashSetExample2.sln -------------------------------------------------------------------------------- /21. Collections/13. HashSet/HashSetExample2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/13. HashSet/HashSetExample2/App.config -------------------------------------------------------------------------------- /21. Collections/13. HashSet/HashSetExample2/HashSetExample2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/13. HashSet/HashSetExample2/HashSetExample2.csproj -------------------------------------------------------------------------------- /21. Collections/13. HashSet/HashSetExample2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/13. HashSet/HashSetExample2/Program.cs -------------------------------------------------------------------------------- /21. Collections/13. HashSet/HashSetExample3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/13. HashSet/HashSetExample3.sln -------------------------------------------------------------------------------- /21. Collections/13. HashSet/HashSetExample3/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/13. HashSet/HashSetExample3/App.config -------------------------------------------------------------------------------- /21. Collections/13. HashSet/HashSetExample3/HashSetExample3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/13. HashSet/HashSetExample3/HashSetExample3.csproj -------------------------------------------------------------------------------- /21. Collections/13. HashSet/HashSetExample3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/13. HashSet/HashSetExample3/Program.cs -------------------------------------------------------------------------------- /21. Collections/14. ArrayList/ArrayListExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/14. ArrayList/ArrayListExample.sln -------------------------------------------------------------------------------- /21. Collections/14. ArrayList/ArrayListExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/14. ArrayList/ArrayListExample/App.config -------------------------------------------------------------------------------- /21. Collections/14. ArrayList/ArrayListExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/14. ArrayList/ArrayListExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/15. Stack/StackExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/15. Stack/StackExample.sln -------------------------------------------------------------------------------- /21. Collections/15. Stack/StackExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/15. Stack/StackExample/App.config -------------------------------------------------------------------------------- /21. Collections/15. Stack/StackExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/15. Stack/StackExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/15. Stack/StackExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/15. Stack/StackExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /21. Collections/15. Stack/StackExample/StackExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/15. Stack/StackExample/StackExample.csproj -------------------------------------------------------------------------------- /21. Collections/16. Queue/QueueExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/16. Queue/QueueExample.sln -------------------------------------------------------------------------------- /21. Collections/16. Queue/QueueExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/16. Queue/QueueExample/App.config -------------------------------------------------------------------------------- /21. Collections/16. Queue/QueueExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/16. Queue/QueueExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/16. Queue/QueueExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/16. Queue/QueueExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /21. Collections/16. Queue/QueueExample/QueueExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/16. Queue/QueueExample/QueueExample.csproj -------------------------------------------------------------------------------- /21. Collections/17. Collection of Objects/ClassLibrary1/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/17. Collection of Objects/ClassLibrary1/Product.cs -------------------------------------------------------------------------------- /21. Collections/21. Iterator and Yield Return/IteratorExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/21. Iterator and Yield Return/IteratorExample.sln -------------------------------------------------------------------------------- /21. Collections/22. Custom Collections/CustomCollections.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/22. Custom Collections/CustomCollections.sln -------------------------------------------------------------------------------- /21. Collections/22. Custom Collections/CustomCollections/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/22. Custom Collections/CustomCollections/App.config -------------------------------------------------------------------------------- /21. Collections/22. Custom Collections/CustomCollections/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/22. Custom Collections/CustomCollections/Program.cs -------------------------------------------------------------------------------- /21. Collections/23. Custom ICollection/ICollectionExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/23. Custom ICollection/ICollectionExample.sln -------------------------------------------------------------------------------- /21. Collections/23. Custom ICollection/ICollectionExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/23. Custom ICollection/ICollectionExample/App.config -------------------------------------------------------------------------------- /21. Collections/23. Custom ICollection/ICollectionExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/23. Custom ICollection/ICollectionExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/24. Custom IList/IListExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/24. Custom IList/IListExample.sln -------------------------------------------------------------------------------- /21. Collections/24. Custom IList/IListExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/24. Custom IList/IListExample/App.config -------------------------------------------------------------------------------- /21. Collections/24. Custom IList/IListExample/IListExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/24. Custom IList/IListExample/IListExample.csproj -------------------------------------------------------------------------------- /21. Collections/24. Custom IList/IListExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/24. Custom IList/IListExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/25. IEquatable/IEquatableExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/25. IEquatable/IEquatableExample.sln -------------------------------------------------------------------------------- /21. Collections/25. IEquatable/IEquatableExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/25. IEquatable/IEquatableExample/App.config -------------------------------------------------------------------------------- /21. Collections/25. IEquatable/IEquatableExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/25. IEquatable/IEquatableExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/26. IComparable/IComparableExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/26. IComparable/IComparableExample.sln -------------------------------------------------------------------------------- /21. Collections/26. IComparable/IComparableExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/26. IComparable/IComparableExample/App.config -------------------------------------------------------------------------------- /21. Collections/26. IComparable/IComparableExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/26. IComparable/IComparableExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/27. IComparer/IComparerExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/27. IComparer/IComparerExample.sln -------------------------------------------------------------------------------- /21. Collections/27. IComparer/IComparerExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/27. IComparer/IComparerExample/App.config -------------------------------------------------------------------------------- /21. Collections/27. IComparer/IComparerExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/27. IComparer/IComparerExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/28. Covariance/CovarianceExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/28. Covariance/CovarianceExample.sln -------------------------------------------------------------------------------- /21. Collections/28. Covariance/CovarianceExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/28. Covariance/CovarianceExample/App.config -------------------------------------------------------------------------------- /21. Collections/28. Covariance/CovarianceExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/28. Covariance/CovarianceExample/Program.cs -------------------------------------------------------------------------------- /21. Collections/29. Contravariance/ContravarianceExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/29. Contravariance/ContravarianceExample.sln -------------------------------------------------------------------------------- /21. Collections/29. Contravariance/ContravarianceExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/29. Contravariance/ContravarianceExample/App.config -------------------------------------------------------------------------------- /21. Collections/29. Contravariance/ContravarianceExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/21. Collections/29. Contravariance/ContravarianceExample/Program.cs -------------------------------------------------------------------------------- /22. Anonymous Types/01. Anonymous Types/AnonymousObjectsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/22. Anonymous Types/01. Anonymous Types/AnonymousObjectsExample.sln -------------------------------------------------------------------------------- /22. Anonymous Types/01. Anonymous Types/ClassLibrary1/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/22. Anonymous Types/01. Anonymous Types/ClassLibrary1/Person.cs -------------------------------------------------------------------------------- /22. Anonymous Types/03. Anonymous Arrays/AnonymousArraysExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/22. Anonymous Types/03. Anonymous Arrays/AnonymousArraysExample.sln -------------------------------------------------------------------------------- /23. Tuples/01. Tuple Class/TupleExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/01. Tuple Class/TupleExample.sln -------------------------------------------------------------------------------- /23. Tuples/01. Tuple Class/TupleExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/01. Tuple Class/TupleExample/App.config -------------------------------------------------------------------------------- /23. Tuples/01. Tuple Class/TupleExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/01. Tuple Class/TupleExample/Program.cs -------------------------------------------------------------------------------- /23. Tuples/01. Tuple Class/TupleExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/01. Tuple Class/TupleExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /23. Tuples/01. Tuple Class/TupleExample/TupleExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/01. Tuple Class/TupleExample/TupleExample.csproj -------------------------------------------------------------------------------- /23. Tuples/02. Value Tuples/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/02. Value Tuples/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /23. Tuples/02. Value Tuples/ClassLibrary1/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/02. Value Tuples/ClassLibrary1/Customer.cs -------------------------------------------------------------------------------- /23. Tuples/02. Value Tuples/ClassLibrary1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/02. Value Tuples/ClassLibrary1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /23. Tuples/02. Value Tuples/ValueTupleExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/02. Value Tuples/ValueTupleExample.sln -------------------------------------------------------------------------------- /23. Tuples/02. Value Tuples/ValueTupleExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/02. Value Tuples/ValueTupleExample/App.config -------------------------------------------------------------------------------- /23. Tuples/02. Value Tuples/ValueTupleExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/02. Value Tuples/ValueTupleExample/Program.cs -------------------------------------------------------------------------------- /23. Tuples/03. Deconstructing/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/03. Deconstructing/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /23. Tuples/03. Deconstructing/ClassLibrary1/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/03. Deconstructing/ClassLibrary1/Customer.cs -------------------------------------------------------------------------------- /23. Tuples/03. Deconstructing/ValueTupleExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/03. Deconstructing/ValueTupleExample.sln -------------------------------------------------------------------------------- /23. Tuples/03. Deconstructing/ValueTupleExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/03. Deconstructing/ValueTupleExample/App.config -------------------------------------------------------------------------------- /23. Tuples/03. Deconstructing/ValueTupleExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/03. Deconstructing/ValueTupleExample/Program.cs -------------------------------------------------------------------------------- /23. Tuples/04. Discards/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/04. Discards/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /23. Tuples/04. Discards/ClassLibrary1/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/04. Discards/ClassLibrary1/Customer.cs -------------------------------------------------------------------------------- /23. Tuples/04. Discards/ClassLibrary1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/04. Discards/ClassLibrary1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /23. Tuples/04. Discards/ValueTupleExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/04. Discards/ValueTupleExample.sln -------------------------------------------------------------------------------- /23. Tuples/04. Discards/ValueTupleExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/04. Discards/ValueTupleExample/App.config -------------------------------------------------------------------------------- /23. Tuples/04. Discards/ValueTupleExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/04. Discards/ValueTupleExample/Program.cs -------------------------------------------------------------------------------- /23. Tuples/04. Discards/ValueTupleExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/04. Discards/ValueTupleExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /23. Tuples/04. Discards/ValueTupleExample/ValueTupleExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/23. Tuples/04. Discards/ValueTupleExample/ValueTupleExample.csproj -------------------------------------------------------------------------------- /25. LINQ/01. Linq Basics/LINQExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/01. Linq Basics/LINQExample.sln -------------------------------------------------------------------------------- /25. LINQ/01. Linq Basics/LINQExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/01. Linq Basics/LINQExample/App.config -------------------------------------------------------------------------------- /25. LINQ/01. Linq Basics/LINQExample/LINQExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/01. Linq Basics/LINQExample/LINQExample.csproj -------------------------------------------------------------------------------- /25. LINQ/01. Linq Basics/LINQExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/01. Linq Basics/LINQExample/Program.cs -------------------------------------------------------------------------------- /25. LINQ/01. Linq Basics/LINQExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/01. Linq Basics/LINQExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /25. LINQ/02. OrderBy/OrderByExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/02. OrderBy/OrderByExample.sln -------------------------------------------------------------------------------- /25. LINQ/02. OrderBy/OrderByExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/02. OrderBy/OrderByExample/App.config -------------------------------------------------------------------------------- /25. LINQ/02. OrderBy/OrderByExample/OrderByExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/02. OrderBy/OrderByExample/OrderByExample.csproj -------------------------------------------------------------------------------- /25. LINQ/02. OrderBy/OrderByExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/02. OrderBy/OrderByExample/Program.cs -------------------------------------------------------------------------------- /25. LINQ/02. OrderBy/OrderByExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/02. OrderBy/OrderByExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /25. LINQ/03. First and FirstOrDefault/FirstExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/03. First and FirstOrDefault/FirstExample.sln -------------------------------------------------------------------------------- /25. LINQ/03. First and FirstOrDefault/FirstExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/03. First and FirstOrDefault/FirstExample/App.config -------------------------------------------------------------------------------- /25. LINQ/03. First and FirstOrDefault/FirstExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/03. First and FirstOrDefault/FirstExample/Program.cs -------------------------------------------------------------------------------- /25. LINQ/04. Last and LastOrDefault/LastExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/04. Last and LastOrDefault/LastExample.sln -------------------------------------------------------------------------------- /25. LINQ/04. Last and LastOrDefault/LastExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/04. Last and LastOrDefault/LastExample/App.config -------------------------------------------------------------------------------- /25. LINQ/04. Last and LastOrDefault/LastExample/LastExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/04. Last and LastOrDefault/LastExample/LastExample.csproj -------------------------------------------------------------------------------- /25. LINQ/04. Last and LastOrDefault/LastExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/04. Last and LastOrDefault/LastExample/Program.cs -------------------------------------------------------------------------------- /25. LINQ/05. ElementAt and ElementAtOrDefault/ElementAtExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/05. ElementAt and ElementAtOrDefault/ElementAtExample.sln -------------------------------------------------------------------------------- /25. LINQ/06. Single and SingleOrDefault/SingleExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/06. Single and SingleOrDefault/SingleExample.sln -------------------------------------------------------------------------------- /25. LINQ/06. Single and SingleOrDefault/SingleExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/06. Single and SingleOrDefault/SingleExample/App.config -------------------------------------------------------------------------------- /25. LINQ/06. Single and SingleOrDefault/SingleExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/06. Single and SingleOrDefault/SingleExample/Program.cs -------------------------------------------------------------------------------- /25. LINQ/07. Select/SelectExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/07. Select/SelectExample.sln -------------------------------------------------------------------------------- /25. LINQ/07. Select/SelectExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/07. Select/SelectExample/App.config -------------------------------------------------------------------------------- /25. LINQ/07. Select/SelectExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/07. Select/SelectExample/Program.cs -------------------------------------------------------------------------------- /25. LINQ/07. Select/SelectExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/07. Select/SelectExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /25. LINQ/07. Select/SelectExample/SelectExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/07. Select/SelectExample/SelectExample.csproj -------------------------------------------------------------------------------- /25. LINQ/08. Min Max/MinMaxExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/08. Min Max/MinMaxExample.sln -------------------------------------------------------------------------------- /25. LINQ/08. Min Max/MinMaxExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/08. Min Max/MinMaxExample/App.config -------------------------------------------------------------------------------- /25. LINQ/08. Min Max/MinMaxExample/MinMaxExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/08. Min Max/MinMaxExample/MinMaxExample.csproj -------------------------------------------------------------------------------- /25. LINQ/08. Min Max/MinMaxExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/08. Min Max/MinMaxExample/Program.cs -------------------------------------------------------------------------------- /25. LINQ/08. Min Max/MinMaxExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/25. LINQ/08. Min Max/MinMaxExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /26. Strings, DateTime/01. String/StringExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/01. String/StringExample.sln -------------------------------------------------------------------------------- /26. Strings, DateTime/01. String/StringExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/01. String/StringExample/App.config -------------------------------------------------------------------------------- /26. Strings, DateTime/01. String/StringExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/01. String/StringExample/Program.cs -------------------------------------------------------------------------------- /26. Strings, DateTime/01. String/StringExample/StringExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/01. String/StringExample/StringExample.csproj -------------------------------------------------------------------------------- /26. Strings, DateTime/07. Modifying Strings/InsertExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/07. Modifying Strings/InsertExample.sln -------------------------------------------------------------------------------- /26. Strings, DateTime/07. Modifying Strings/InsertExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/07. Modifying Strings/InsertExample/App.config -------------------------------------------------------------------------------- /26. Strings, DateTime/07. Modifying Strings/InsertExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/07. Modifying Strings/InsertExample/Program.cs -------------------------------------------------------------------------------- /26. Strings, DateTime/09. StringBuilder/StringBuilderExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/09. StringBuilder/StringBuilderExample.sln -------------------------------------------------------------------------------- /26. Strings, DateTime/11. DateTime/DateTimeExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/11. DateTime/DateTimeExample.sln -------------------------------------------------------------------------------- /26. Strings, DateTime/11. DateTime/DateTimeExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/11. DateTime/DateTimeExample/App.config -------------------------------------------------------------------------------- /26. Strings, DateTime/11. DateTime/DateTimeExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/11. DateTime/DateTimeExample/Program.cs -------------------------------------------------------------------------------- /26. Strings, DateTime/12. DateTime Formats/DateTimeFormatsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/12. DateTime Formats/DateTimeFormatsExample.sln -------------------------------------------------------------------------------- /26. Strings, DateTime/13. Date Substraction/SubtractDateExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/13. Date Substraction/SubtractDateExample.sln -------------------------------------------------------------------------------- /26. Strings, DateTime/14. Date Addition/AddingDatesExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/14. Date Addition/AddingDatesExample.sln -------------------------------------------------------------------------------- /26. Strings, DateTime/14. Date Addition/AddingDatesExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/14. Date Addition/AddingDatesExample/App.config -------------------------------------------------------------------------------- /26. Strings, DateTime/14. Date Addition/AddingDatesExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/14. Date Addition/AddingDatesExample/Program.cs -------------------------------------------------------------------------------- /26. Strings, DateTime/15. Math - Part 1/MathExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/15. Math - Part 1/MathExample.sln -------------------------------------------------------------------------------- /26. Strings, DateTime/15. Math - Part 1/MathExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/15. Math - Part 1/MathExample/App.config -------------------------------------------------------------------------------- /26. Strings, DateTime/15. Math - Part 1/MathExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/15. Math - Part 1/MathExample/Program.cs -------------------------------------------------------------------------------- /26. Strings, DateTime/16. Math - Part 2/MathExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/16. Math - Part 2/MathExample.sln -------------------------------------------------------------------------------- /26. Strings, DateTime/16. Math - Part 2/MathExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/16. Math - Part 2/MathExample/App.config -------------------------------------------------------------------------------- /26. Strings, DateTime/16. Math - Part 2/MathExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/16. Math - Part 2/MathExample/Program.cs -------------------------------------------------------------------------------- /26. Strings, DateTime/17. Regular Expressions/RegExpExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/26. Strings, DateTime/17. Regular Expressions/RegExpExample.sln -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/01. Binary/BinaryExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/01. Binary/BinaryExample.sln -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/01. Binary/BinaryExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/01. Binary/BinaryExample/App.config -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/01. Binary/BinaryExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/01. Binary/BinaryExample/Program.cs -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/02. Octal/OctalExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/02. Octal/OctalExample.sln -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/02. Octal/OctalExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/02. Octal/OctalExample/App.config -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/02. Octal/OctalExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/02. Octal/OctalExample/Program.cs -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/03. Hexadecimal/HexdecimalExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/03. Hexadecimal/HexdecimalExample.sln -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/04. Ascii/AsciiExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/04. Ascii/AsciiExample.sln -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/04. Ascii/AsciiExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/04. Ascii/AsciiExample/App.config -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/04. Ascii/AsciiExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/04. Ascii/AsciiExample/Program.cs -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/05. Unicode/UnicodeExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/05. Unicode/UnicodeExample.sln -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/05. Unicode/UnicodeExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/05. Unicode/UnicodeExample/App.config -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/05. Unicode/UnicodeExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/05. Unicode/UnicodeExample/Program.cs -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/06. File/FileExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/06. File/FileExample.sln -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/06. File/FileExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/06. File/FileExample/App.config -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/06. File/FileExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/06. File/FileExample/Program.cs -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/08. FileInfo/FileInfoExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/08. FileInfo/FileInfoExample.sln -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/10. Directory/DirectoryExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/10. Directory/DirectoryExample.sln -------------------------------------------------------------------------------- /27. IO, Serialization, Encoding/13. DriveInfo/DriveInfoExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/27. IO, Serialization, Encoding/13. DriveInfo/DriveInfoExample.sln -------------------------------------------------------------------------------- /28. Exception Handling/02. FormatException/FormatExceptionExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/28. Exception Handling/02. FormatException/FormatExceptionExample.sln -------------------------------------------------------------------------------- /28. Exception Handling/06. Inner Exception/InnerExceptionExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/28. Exception Handling/06. Inner Exception/InnerExceptionExample.sln -------------------------------------------------------------------------------- /28. Exception Handling/11. Stack Trace/StackTraceExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/28. Exception Handling/11. Stack Trace/StackTraceExample.sln -------------------------------------------------------------------------------- /28. Exception Handling/11. Stack Trace/StackTraceExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/28. Exception Handling/11. Stack Trace/StackTraceExample/App.config -------------------------------------------------------------------------------- /28. Exception Handling/11. Stack Trace/StackTraceExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/28. Exception Handling/11. Stack Trace/StackTraceExample/Program.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/01. Top Level Statements/TopLevelStmt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/01. Top Level Statements/TopLevelStmt.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/01. Top Level Statements/TopLevelStmt/Another.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/01. Top Level Statements/TopLevelStmt/Another.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/01. Top Level Statements/TopLevelStmt/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/01. Top Level Statements/TopLevelStmt/Program.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/02. File Scoped Namespaces/FileScopedExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/02. File Scoped Namespaces/FileScopedExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/02. File Scoped Namespaces/FileScopedExample/Other.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/02. File Scoped Namespaces/FileScopedExample/Other.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/03. Global Using/GlobalUsingsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/03. Global Using/GlobalUsingsExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/03. Global Using/GlobalUsingsExample/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/03. Global Using/GlobalUsingsExample/GlobalUsings.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/03. Global Using/GlobalUsingsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/03. Global Using/GlobalUsingsExample/Program.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/04. Module Initializers/ModuleInitializerExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/04. Module Initializers/ModuleInitializerExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/05. Nullable Reference Types/NullableRefTypes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/05. Nullable Reference Types/NullableRefTypes.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/06. Null Forgiving Operator/NullableRefTypes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/06. Null Forgiving Operator/NullableRefTypes.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/07. New Expressions/NullableRefTypes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/07. New Expressions/NullableRefTypes.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/07. New Expressions/NullableRefTypes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/07. New Expressions/NullableRefTypes/Program.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/09. Type Pattern Matching/PatternMatchingExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/09. Type Pattern Matching/PatternMatchingExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/11. When Pattern Matching/PatternMatchingExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/11. When Pattern Matching/PatternMatchingExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/15. Tuple Pattern Matching/PatternMatchingExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/15. Tuple Pattern Matching/PatternMatchingExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/18. Need of Immutability/ImmutabilityExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/18. Need of Immutability/ImmutabilityExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/19. Immutable Classes/ImmutabilityExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/19. Immutable Classes/ImmutabilityExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/19. Immutable Classes/ImmutabilityExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/19. Immutable Classes/ImmutabilityExample/Program.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/20. Init-Only Properties/ImmutabilityExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/20. Init-Only Properties/ImmutabilityExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/21. Readonly Structs/ImmutabilityExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/21. Readonly Structs/ImmutabilityExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/21. Readonly Structs/ImmutabilityExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/21. Readonly Structs/ImmutabilityExample/Program.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/23. Records/RecordExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/23. Records/RecordExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/23. Records/RecordExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/23. Records/RecordExample/Program.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/23. Records/RecordExample/RecordExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/23. Records/RecordExample/RecordExample.csproj -------------------------------------------------------------------------------- /29. C# 9 and 10/24. Nested Records/RecordExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/24. Nested Records/RecordExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/24. Nested Records/RecordExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/24. Nested Records/RecordExample/Program.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/24. Nested Records/RecordExample/RecordExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/24. Nested Records/RecordExample/RecordExample.csproj -------------------------------------------------------------------------------- /29. C# 9 and 10/25. Records Immutability/RecordExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/25. Records Immutability/RecordExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/25. Records Immutability/RecordExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/25. Records Immutability/RecordExample/Program.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/26. Records Equality/RecordExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/26. Records Equality/RecordExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/26. Records Equality/RecordExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/26. Records Equality/RecordExample/Program.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/27. Records With Expression/RecordExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/27. Records With Expression/RecordExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/27. Records With Expression/RecordExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/27. Records With Expression/RecordExample/Program.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/28. Records Deconstruct/RecordExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/28. Records Deconstruct/RecordExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/28. Records Deconstruct/RecordExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/28. Records Deconstruct/RecordExample/Program.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/29. Records ToString/RecordExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/29. Records ToString/RecordExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/29. Records ToString/RecordExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/29. Records ToString/RecordExample/Program.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/30. Records Constructor/RecordExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/30. Records Constructor/RecordExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/30. Records Constructor/RecordExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/30. Records Constructor/RecordExample/Program.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/31. Records Inheritance/RecordExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/31. Records Inheritance/RecordExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/31. Records Inheritance/RecordExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/31. Records Inheritance/RecordExample/Program.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/32. Records Sealed ToString/RecordExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/32. Records Sealed ToString/RecordExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/32. Records Sealed ToString/RecordExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/32. Records Sealed ToString/RecordExample/Program.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/33. Record Structs/RecordStructsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/33. Record Structs/RecordStructsExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/33. Record Structs/RecordStructsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/33. Record Structs/RecordStructsExample/Program.cs -------------------------------------------------------------------------------- /29. C# 9 and 10/37. Lambda Function Return Type/LambdaExprExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/37. Lambda Function Return Type/LambdaExprExample.sln -------------------------------------------------------------------------------- /29. C# 9 and 10/43. Index From End Operator/IndexFromEndExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/29. C# 9 and 10/43. Index From End Operator/IndexFromEndExample.sln -------------------------------------------------------------------------------- /30. Threads/01. Main Thread/ThreadingApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/01. Main Thread/ThreadingApp.sln -------------------------------------------------------------------------------- /30. Threads/01. Main Thread/ThreadingApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/01. Main Thread/ThreadingApp/Program.cs -------------------------------------------------------------------------------- /30. Threads/01. Main Thread/ThreadingApp/ThreadingApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/01. Main Thread/ThreadingApp/ThreadingApp.csproj -------------------------------------------------------------------------------- /30. Threads/02. Thread Class/ThreadingApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/02. Thread Class/ThreadingApp.sln -------------------------------------------------------------------------------- /30. Threads/02. Thread Class/ThreadingApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/02. Thread Class/ThreadingApp/Program.cs -------------------------------------------------------------------------------- /30. Threads/02. Thread Class/ThreadingApp/ThreadingApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/02. Thread Class/ThreadingApp/ThreadingApp.csproj -------------------------------------------------------------------------------- /30. Threads/03. Single Threaded App/ThreadingApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/03. Single Threaded App/ThreadingApp.sln -------------------------------------------------------------------------------- /30. Threads/03. Single Threaded App/ThreadingApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/03. Single Threaded App/ThreadingApp/Program.cs -------------------------------------------------------------------------------- /30. Threads/03. Single Threaded App/ThreadingApp/ThreadingApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/03. Single Threaded App/ThreadingApp/ThreadingApp.csproj -------------------------------------------------------------------------------- /30. Threads/04. Multiple Threads/ThreadingApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/04. Multiple Threads/ThreadingApp.sln -------------------------------------------------------------------------------- /30. Threads/04. Multiple Threads/ThreadingApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/04. Multiple Threads/ThreadingApp/Program.cs -------------------------------------------------------------------------------- /30. Threads/04. Multiple Threads/ThreadingApp/ThreadingApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/04. Multiple Threads/ThreadingApp/ThreadingApp.csproj -------------------------------------------------------------------------------- /30. Threads/05. Sleep/ThreadingApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/05. Sleep/ThreadingApp.sln -------------------------------------------------------------------------------- /30. Threads/05. Sleep/ThreadingApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/05. Sleep/ThreadingApp/Program.cs -------------------------------------------------------------------------------- /30. Threads/05. Sleep/ThreadingApp/ThreadingApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/05. Sleep/ThreadingApp/ThreadingApp.csproj -------------------------------------------------------------------------------- /30. Threads/06. Join/ThreadingApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/06. Join/ThreadingApp.sln -------------------------------------------------------------------------------- /30. Threads/06. Join/ThreadingApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/06. Join/ThreadingApp/Program.cs -------------------------------------------------------------------------------- /30. Threads/06. Join/ThreadingApp/ThreadingApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/06. Join/ThreadingApp/ThreadingApp.csproj -------------------------------------------------------------------------------- /30. Threads/07. Thread Priority/ThreadingApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/07. Thread Priority/ThreadingApp.sln -------------------------------------------------------------------------------- /30. Threads/07. Thread Priority/ThreadingApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/07. Thread Priority/ThreadingApp/Program.cs -------------------------------------------------------------------------------- /30. Threads/07. Thread Priority/ThreadingApp/ThreadingApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/07. Thread Priority/ThreadingApp/ThreadingApp.csproj -------------------------------------------------------------------------------- /30. Threads/08. Interrupt/ThreadingApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/08. Interrupt/ThreadingApp.sln -------------------------------------------------------------------------------- /30. Threads/08. Interrupt/ThreadingApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/08. Interrupt/ThreadingApp/Program.cs -------------------------------------------------------------------------------- /30. Threads/08. Interrupt/ThreadingApp/ThreadingApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/08. Interrupt/ThreadingApp/ThreadingApp.csproj -------------------------------------------------------------------------------- /30. Threads/09. Thread Parameters/ThreadingApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/09. Thread Parameters/ThreadingApp.sln -------------------------------------------------------------------------------- /30. Threads/09. Thread Parameters/ThreadingApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/09. Thread Parameters/ThreadingApp/Program.cs -------------------------------------------------------------------------------- /30. Threads/09. Thread Parameters/ThreadingApp/ThreadingApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/09. Thread Parameters/ThreadingApp/ThreadingApp.csproj -------------------------------------------------------------------------------- /30. Threads/10. ParameterizedThreadStart/ThreadingApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/10. ParameterizedThreadStart/ThreadingApp.sln -------------------------------------------------------------------------------- /30. Threads/10. ParameterizedThreadStart/ThreadingApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/10. ParameterizedThreadStart/ThreadingApp/Program.cs -------------------------------------------------------------------------------- /30. Threads/11. Custom Thread Object/ThreadingApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/11. Custom Thread Object/ThreadingApp.sln -------------------------------------------------------------------------------- /30. Threads/11. Custom Thread Object/ThreadingApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/11. Custom Thread Object/ThreadingApp/Program.cs -------------------------------------------------------------------------------- /30. Threads/11. Custom Thread Object/ThreadingApp/ThreadingApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/11. Custom Thread Object/ThreadingApp/ThreadingApp.csproj -------------------------------------------------------------------------------- /30. Threads/12. Callback/ThreadingApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/12. Callback/ThreadingApp.sln -------------------------------------------------------------------------------- /30. Threads/12. Callback/ThreadingApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/12. Callback/ThreadingApp/Program.cs -------------------------------------------------------------------------------- /30. Threads/12. Callback/ThreadingApp/ThreadingApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/12. Callback/ThreadingApp/ThreadingApp.csproj -------------------------------------------------------------------------------- /30. Threads/13. Shared Resources/ThreadingApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/13. Shared Resources/ThreadingApp.sln -------------------------------------------------------------------------------- /30. Threads/13. Shared Resources/ThreadingApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/13. Shared Resources/ThreadingApp/Program.cs -------------------------------------------------------------------------------- /30. Threads/13. Shared Resources/ThreadingApp/ThreadingApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/13. Shared Resources/ThreadingApp/ThreadingApp.csproj -------------------------------------------------------------------------------- /30. Threads/14. Monitor/ThreadingApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/14. Monitor/ThreadingApp.sln -------------------------------------------------------------------------------- /30. Threads/14. Monitor/ThreadingApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/14. Monitor/ThreadingApp/Program.cs -------------------------------------------------------------------------------- /30. Threads/14. Monitor/ThreadingApp/ThreadingApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/14. Monitor/ThreadingApp/ThreadingApp.csproj -------------------------------------------------------------------------------- /30. Threads/15. Lock/ThreadingApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/15. Lock/ThreadingApp.sln -------------------------------------------------------------------------------- /30. Threads/15. Lock/ThreadingApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/15. Lock/ThreadingApp/Program.cs -------------------------------------------------------------------------------- /30. Threads/15. Lock/ThreadingApp/ThreadingApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/15. Lock/ThreadingApp/ThreadingApp.csproj -------------------------------------------------------------------------------- /30. Threads/16. ManualResetEvent - Part 1/EventExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/16. ManualResetEvent - Part 1/EventExample.sln -------------------------------------------------------------------------------- /30. Threads/16. ManualResetEvent - Part 1/EventExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/16. ManualResetEvent - Part 1/EventExample/Program.cs -------------------------------------------------------------------------------- /30. Threads/17. ManualResetEvent - Part 2/EventExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/17. ManualResetEvent - Part 2/EventExample.sln -------------------------------------------------------------------------------- /30. Threads/17. ManualResetEvent - Part 2/EventExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/17. ManualResetEvent - Part 2/EventExample/Program.cs -------------------------------------------------------------------------------- /30. Threads/18. ManualResetEvent - Part 3/EventExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/18. ManualResetEvent - Part 3/EventExample.sln -------------------------------------------------------------------------------- /30. Threads/18. ManualResetEvent - Part 3/EventExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/18. ManualResetEvent - Part 3/EventExample/Program.cs -------------------------------------------------------------------------------- /30. Threads/19. AutoResetEvent/EventExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/19. AutoResetEvent/EventExample.sln -------------------------------------------------------------------------------- /30. Threads/19. AutoResetEvent/EventExample/EventExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/19. AutoResetEvent/EventExample/EventExample.csproj -------------------------------------------------------------------------------- /30. Threads/19. AutoResetEvent/EventExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/19. AutoResetEvent/EventExample/Program.cs -------------------------------------------------------------------------------- /30. Threads/20. Wait and Pulse - Part 1/WaitPulseExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/20. Wait and Pulse - Part 1/WaitPulseExample.sln -------------------------------------------------------------------------------- /30. Threads/20. Wait and Pulse - Part 1/WaitPulseExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/20. Wait and Pulse - Part 1/WaitPulseExample/Program.cs -------------------------------------------------------------------------------- /30. Threads/21. Wait and Pulse - Part 2/WaitPulseExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/21. Wait and Pulse - Part 2/WaitPulseExample.sln -------------------------------------------------------------------------------- /30. Threads/21. Wait and Pulse - Part 2/WaitPulseExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/21. Wait and Pulse - Part 2/WaitPulseExample/Program.cs -------------------------------------------------------------------------------- /30. Threads/22. Wait and Pulse - Part 3/WaitPulseExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/22. Wait and Pulse - Part 3/WaitPulseExample.sln -------------------------------------------------------------------------------- /30. Threads/22. Wait and Pulse - Part 3/WaitPulseExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/22. Wait and Pulse - Part 3/WaitPulseExample/Program.cs -------------------------------------------------------------------------------- /30. Threads/23. Monitor with ManualResetEvent/WaitPulseExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/23. Monitor with ManualResetEvent/WaitPulseExample.sln -------------------------------------------------------------------------------- /30. Threads/24. ConcurrentQueue/WaitPulseExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/24. ConcurrentQueue/WaitPulseExample.sln -------------------------------------------------------------------------------- /30. Threads/24. ConcurrentQueue/WaitPulseExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/24. ConcurrentQueue/WaitPulseExample/Program.cs -------------------------------------------------------------------------------- /30. Threads/25. CSV with Threads - Part 1/CSVExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/25. CSV with Threads - Part 1/CSVExample.sln -------------------------------------------------------------------------------- /30. Threads/25. CSV with Threads - Part 1/CSVExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/25. CSV with Threads - Part 1/CSVExample/Program.cs -------------------------------------------------------------------------------- /30. Threads/25. CSV with Threads - Part 1/CSVExample/Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/25. CSV with Threads - Part 1/CSVExample/Shared.cs -------------------------------------------------------------------------------- /30. Threads/26. CSV with Threads - Part 2/CSVExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/26. CSV with Threads - Part 2/CSVExample.sln -------------------------------------------------------------------------------- /30. Threads/26. CSV with Threads - Part 2/CSVExample/DataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/26. CSV with Threads - Part 2/CSVExample/DataProcessor.cs -------------------------------------------------------------------------------- /30. Threads/26. CSV with Threads - Part 2/CSVExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/26. CSV with Threads - Part 2/CSVExample/Program.cs -------------------------------------------------------------------------------- /30. Threads/26. CSV with Threads - Part 2/CSVExample/Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/26. CSV with Threads - Part 2/CSVExample/Shared.cs -------------------------------------------------------------------------------- /30. Threads/27. CSV with Threads - Part 3/CSVExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/27. CSV with Threads - Part 3/CSVExample.sln -------------------------------------------------------------------------------- /30. Threads/27. CSV with Threads - Part 3/CSVExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/27. CSV with Threads - Part 3/CSVExample/Program.cs -------------------------------------------------------------------------------- /30. Threads/27. CSV with Threads - Part 3/CSVExample/Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/27. CSV with Threads - Part 3/CSVExample/Shared.cs -------------------------------------------------------------------------------- /30. Threads/28. CSV with Threads - Part 4/CSVExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/28. CSV with Threads - Part 4/CSVExample.sln -------------------------------------------------------------------------------- /30. Threads/28. CSV with Threads - Part 4/CSVExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/28. CSV with Threads - Part 4/CSVExample/Program.cs -------------------------------------------------------------------------------- /30. Threads/28. CSV with Threads - Part 4/CSVExample/Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/28. CSV with Threads - Part 4/CSVExample/Shared.cs -------------------------------------------------------------------------------- /30. Threads/29. Semaphore/CSVExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/29. Semaphore/CSVExample.sln -------------------------------------------------------------------------------- /30. Threads/29. Semaphore/CSVExample/CSVExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/29. Semaphore/CSVExample/CSVExample.csproj -------------------------------------------------------------------------------- /30. Threads/29. Semaphore/CSVExample/DataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/29. Semaphore/CSVExample/DataProcessor.cs -------------------------------------------------------------------------------- /30. Threads/29. Semaphore/CSVExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/29. Semaphore/CSVExample/Program.cs -------------------------------------------------------------------------------- /30. Threads/29. Semaphore/CSVExample/Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/29. Semaphore/CSVExample/Shared.cs -------------------------------------------------------------------------------- /30. Threads/30. Mutex/CSVExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/30. Mutex/CSVExample.sln -------------------------------------------------------------------------------- /30. Threads/30. Mutex/CSVExample/CSVExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/30. Mutex/CSVExample/CSVExample.csproj -------------------------------------------------------------------------------- /30. Threads/30. Mutex/CSVExample/DataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/30. Mutex/CSVExample/DataProcessor.cs -------------------------------------------------------------------------------- /30. Threads/30. Mutex/CSVExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/30. Mutex/CSVExample/Program.cs -------------------------------------------------------------------------------- /30. Threads/30. Mutex/CSVExample/Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/30. Mutex/CSVExample/Shared.cs -------------------------------------------------------------------------------- /30. Threads/31. Thread Pool/CSVExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/31. Thread Pool/CSVExample.sln -------------------------------------------------------------------------------- /30. Threads/31. Thread Pool/CSVExample/CSVExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/31. Thread Pool/CSVExample/CSVExample.csproj -------------------------------------------------------------------------------- /30. Threads/31. Thread Pool/CSVExample/DataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/31. Thread Pool/CSVExample/DataProcessor.cs -------------------------------------------------------------------------------- /30. Threads/31. Thread Pool/CSVExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/31. Thread Pool/CSVExample/Program.cs -------------------------------------------------------------------------------- /30. Threads/31. Thread Pool/CSVExample/Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/31. Thread Pool/CSVExample/Shared.cs -------------------------------------------------------------------------------- /30. Threads/32. CountDownEvent/CSVExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/32. CountDownEvent/CSVExample.sln -------------------------------------------------------------------------------- /30. Threads/32. CountDownEvent/CSVExample/CSVExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/32. CountDownEvent/CSVExample/CSVExample.csproj -------------------------------------------------------------------------------- /30. Threads/32. CountDownEvent/CSVExample/DataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/32. CountDownEvent/CSVExample/DataProcessor.cs -------------------------------------------------------------------------------- /30. Threads/32. CountDownEvent/CSVExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/32. CountDownEvent/CSVExample/Program.cs -------------------------------------------------------------------------------- /30. Threads/32. CountDownEvent/CSVExample/Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/30. Threads/32. CountDownEvent/CSVExample/Shared.cs -------------------------------------------------------------------------------- /31. Tasks/01. Task.Run/TaskExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/01. Task.Run/TaskExample.sln -------------------------------------------------------------------------------- /31. Tasks/01. Task.Run/TaskExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/01. Task.Run/TaskExample/Program.cs -------------------------------------------------------------------------------- /31. Tasks/01. Task.Run/TaskExample/TaskExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/01. Task.Run/TaskExample/TaskExample.csproj -------------------------------------------------------------------------------- /31. Tasks/02. Stopwatch/TaskExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/02. Stopwatch/TaskExample.sln -------------------------------------------------------------------------------- /31. Tasks/02. Stopwatch/TaskExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/02. Stopwatch/TaskExample/Program.cs -------------------------------------------------------------------------------- /31. Tasks/02. Stopwatch/TaskExample/TaskExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/02. Stopwatch/TaskExample/TaskExample.csproj -------------------------------------------------------------------------------- /31. Tasks/03. Task.Factory.StartNew/TaskExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/03. Task.Factory.StartNew/TaskExample.sln -------------------------------------------------------------------------------- /31. Tasks/03. Task.Factory.StartNew/TaskExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/03. Task.Factory.StartNew/TaskExample/Program.cs -------------------------------------------------------------------------------- /31. Tasks/03. Task.Factory.StartNew/TaskExample/TaskExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/03. Task.Factory.StartNew/TaskExample/TaskExample.csproj -------------------------------------------------------------------------------- /31. Tasks/04. Task.Wait/TaskExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/04. Task.Wait/TaskExample.sln -------------------------------------------------------------------------------- /31. Tasks/04. Task.Wait/TaskExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/04. Task.Wait/TaskExample/Program.cs -------------------------------------------------------------------------------- /31. Tasks/04. Task.Wait/TaskExample/TaskExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/04. Task.Wait/TaskExample/TaskExample.csproj -------------------------------------------------------------------------------- /31. Tasks/05. Task.WaitAll/TaskExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/05. Task.WaitAll/TaskExample.sln -------------------------------------------------------------------------------- /31. Tasks/05. Task.WaitAll/TaskExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/05. Task.WaitAll/TaskExample/Program.cs -------------------------------------------------------------------------------- /31. Tasks/05. Task.WaitAll/TaskExample/TaskExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/05. Task.WaitAll/TaskExample/TaskExample.csproj -------------------------------------------------------------------------------- /31. Tasks/06. Generic Task/TaskExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/06. Generic Task/TaskExample.sln -------------------------------------------------------------------------------- /31. Tasks/06. Generic Task/TaskExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/06. Generic Task/TaskExample/Program.cs -------------------------------------------------------------------------------- /31. Tasks/06. Generic Task/TaskExample/TaskExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/06. Generic Task/TaskExample/TaskExample.csproj -------------------------------------------------------------------------------- /31. Tasks/07. Returning Complex Types/TaskExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/07. Returning Complex Types/TaskExample.sln -------------------------------------------------------------------------------- /31. Tasks/07. Returning Complex Types/TaskExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/07. Returning Complex Types/TaskExample/Program.cs -------------------------------------------------------------------------------- /31. Tasks/08. Task.WaitAny/TaskExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/08. Task.WaitAny/TaskExample.sln -------------------------------------------------------------------------------- /31. Tasks/08. Task.WaitAny/TaskExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/08. Task.WaitAny/TaskExample/Program.cs -------------------------------------------------------------------------------- /31. Tasks/08. Task.WaitAny/TaskExample/TaskExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/08. Task.WaitAny/TaskExample/TaskExample.csproj -------------------------------------------------------------------------------- /31. Tasks/09. Task.Delay/TaskExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/09. Task.Delay/TaskExample.sln -------------------------------------------------------------------------------- /31. Tasks/09. Task.Delay/TaskExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/09. Task.Delay/TaskExample/Program.cs -------------------------------------------------------------------------------- /31. Tasks/09. Task.Delay/TaskExample/TaskExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/09. Task.Delay/TaskExample/TaskExample.csproj -------------------------------------------------------------------------------- /31. Tasks/10. Task.ContinueWith/TaskExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/10. Task.ContinueWith/TaskExample.sln -------------------------------------------------------------------------------- /31. Tasks/10. Task.ContinueWith/TaskExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/10. Task.ContinueWith/TaskExample/Program.cs -------------------------------------------------------------------------------- /31. Tasks/10. Task.ContinueWith/TaskExample/TaskExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/10. Task.ContinueWith/TaskExample/TaskExample.csproj -------------------------------------------------------------------------------- /31. Tasks/11. Task Exception Handling - Part 1/TaskExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/11. Task Exception Handling - Part 1/TaskExample.sln -------------------------------------------------------------------------------- /31. Tasks/12. Task Exception Handling - Part 2/TaskExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/12. Task Exception Handling - Part 2/TaskExample.sln -------------------------------------------------------------------------------- /31. Tasks/13. Continuation Chain/TaskExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/13. Continuation Chain/TaskExample.sln -------------------------------------------------------------------------------- /31. Tasks/13. Continuation Chain/TaskExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/13. Continuation Chain/TaskExample/Program.cs -------------------------------------------------------------------------------- /31. Tasks/13. Continuation Chain/TaskExample/TaskExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/13. Continuation Chain/TaskExample/TaskExample.csproj -------------------------------------------------------------------------------- /31. Tasks/14. Task Cancellation/TaskExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/14. Task Cancellation/TaskExample.sln -------------------------------------------------------------------------------- /31. Tasks/14. Task Cancellation/TaskExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/14. Task Cancellation/TaskExample/Program.cs -------------------------------------------------------------------------------- /31. Tasks/14. Task Cancellation/TaskExample/TaskExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/14. Task Cancellation/TaskExample/TaskExample.csproj -------------------------------------------------------------------------------- /31. Tasks/15. File IO/FileIOExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/15. File IO/FileIOExample.sln -------------------------------------------------------------------------------- /31. Tasks/15. File IO/FileIOExample/FileIOExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/15. File IO/FileIOExample/FileIOExample.csproj -------------------------------------------------------------------------------- /31. Tasks/15. File IO/FileIOExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/31. Tasks/15. File IO/FileIOExample/Program.cs -------------------------------------------------------------------------------- /33. C# 11/01. Raw String Literals/RawStringsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/33. C# 11/01. Raw String Literals/RawStringsExample.sln -------------------------------------------------------------------------------- /33. C# 11/01. Raw String Literals/RawStringsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/33. C# 11/01. Raw String Literals/RawStringsExample/Program.cs -------------------------------------------------------------------------------- /33. C# 11/02. List Pattern/ListPatternExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/33. C# 11/02. List Pattern/ListPatternExample.sln -------------------------------------------------------------------------------- /33. C# 11/02. List Pattern/ListPatternExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/33. C# 11/02. List Pattern/ListPatternExample/Program.cs -------------------------------------------------------------------------------- /33. C# 11/03. Slice Pattern/SlicePatternExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/33. C# 11/03. Slice Pattern/SlicePatternExample.sln -------------------------------------------------------------------------------- /33. C# 11/03. Slice Pattern/SlicePatternExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/33. C# 11/03. Slice Pattern/SlicePatternExample/Program.cs -------------------------------------------------------------------------------- /33. C# 11/04. Var Pattern/VarPatternExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/33. C# 11/04. Var Pattern/VarPatternExample.sln -------------------------------------------------------------------------------- /33. C# 11/04. Var Pattern/VarPatternExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/33. C# 11/04. Var Pattern/VarPatternExample/Program.cs -------------------------------------------------------------------------------- /33. C# 11/05. File Local Types/FileLocalTypesExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/33. C# 11/05. File Local Types/FileLocalTypesExample.sln -------------------------------------------------------------------------------- /33. C# 11/05. File Local Types/FileLocalTypesExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/33. C# 11/05. File Local Types/FileLocalTypesExample/Program.cs -------------------------------------------------------------------------------- /33. C# 11/05. File Local Types/FileLocalTypesExample/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/33. C# 11/05. File Local Types/FileLocalTypesExample/Service.cs -------------------------------------------------------------------------------- /33. C# 11/06. Required Members/RequiredMembersExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/33. C# 11/06. Required Members/RequiredMembersExample.sln -------------------------------------------------------------------------------- /33. C# 11/06. Required Members/RequiredMembersExample/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/33. C# 11/06. Required Members/RequiredMembersExample/Person.cs -------------------------------------------------------------------------------- /33. C# 11/06. Required Members/RequiredMembersExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/33. C# 11/06. Required Members/RequiredMembersExample/Program.cs -------------------------------------------------------------------------------- /33. C# 11/07. Auto Default Structs/AutoDefaultStructsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/33. C# 11/07. Auto Default Structs/AutoDefaultStructsExample.sln -------------------------------------------------------------------------------- /33. C# 11/08. Ref Fields/RefFieldsExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/33. C# 11/08. Ref Fields/RefFieldsExample.sln -------------------------------------------------------------------------------- /33. C# 11/08. Ref Fields/RefFieldsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/33. C# 11/08. Ref Fields/RefFieldsExample/Program.cs -------------------------------------------------------------------------------- /33. C# 11/08. Ref Fields/RefFieldsExample/RefFieldsExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/33. C# 11/08. Ref Fields/RefFieldsExample/RefFieldsExample.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsha-Global/CS-web-university-harsha/HEAD/README.md --------------------------------------------------------------------------------