├── .gitattributes ├── .gitignore ├── ClassLibraryPractice ├── Class1.cs ├── ClassLibraryPractice.csproj └── Properties │ └── AssemblyInfo.cs ├── CodingQuiz ├── App.config ├── CodingQuiz.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── Course.sln ├── Hello.World ├── App.config ├── Hello.World.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── HelloWorld ├── App.config ├── HelloWorld.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── README.md ├── Section 12 ├── Exam │ ├── Exam.cs │ ├── IPageObject.cs │ ├── PageObjectOne.cs │ ├── PageObjectTwo.cs │ └── packages.config ├── ITransactions.cs ├── ITraveler.cs ├── InterfaceSample.cs ├── InterfaceTest.cs ├── Person.cs ├── Professor.cs ├── Properties │ └── AssemblyInfo.cs ├── Section12.csproj ├── Student.cs ├── Transaction.cs └── packages.config ├── Section1 └── HelloWorld │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Section1.csproj │ └── packages.config ├── Section10 ├── ArrayTest.cs ├── ListTest.cs ├── Properties │ └── AssemblyInfo.cs ├── Section10.csproj ├── SectionExam.cs └── packages.config ├── Section11 ├── AdvancedOO.csproj ├── Exam │ ├── AutoLoan.cs │ ├── ExamTest.cs │ ├── HomeLoan.cs │ └── Loan.cs ├── InheritanceTest.cs ├── Pen.cs ├── Person.cs ├── Properties │ └── AssemblyInfo.cs ├── Quiz │ ├── Lecture.cs │ ├── Musical.cs │ ├── Play.cs │ ├── QuizTicketTest.cs │ └── Ticket.cs ├── Student.cs ├── UnitTest1.cs └── packages.config ├── Section12 ├── Exam.cs ├── IPageObject.cs ├── PageObjectOne.cs ├── PageObjectOne1.cs ├── Properties │ └── AssemblyInfo.cs ├── Section12.csproj └── packages.config ├── Section13 ├── CustomException.cs ├── Exam │ ├── ExamHelper.cs │ └── ExamTester.cs ├── ExceptionHelper.cs ├── ExceptionTests.cs ├── Properties │ └── AssemblyInfo.cs ├── Quiz │ ├── BodyMassIndexCalculator.cs │ └── QuizTester.cs ├── Section13.csproj └── packages.config ├── Section14 ├── AdvancedTest.cs ├── CastingClasses.cs ├── DelegateDemo.cs ├── Properties │ └── AssemblyInfo.cs ├── QuizTest.cs ├── RegularExpressionsTest.cs ├── Section14.csproj └── packages.config ├── Section15 ├── BasePage.cs ├── ComplicatedPage.cs ├── Element.cs ├── Final Exam 1 │ ├── BasePage.cs │ ├── ComplicatedPage.cs │ ├── Element.cs │ ├── FinalExam.cs │ ├── SectionOfButtons.cs │ ├── SectionOfRandomStuff.cs │ └── SectionOfSocialMedia.cs ├── Final Exam 2 │ ├── Housing.cs │ ├── HousingTest.cs │ ├── IUnits.cs │ ├── MultiUnits.cs │ └── SingleFamily.cs ├── FinalExam.cs ├── Properties │ └── AssemblyInfo.cs ├── Section15.csproj ├── SectionOfButtons.cs ├── SectionOfRandomStuff.cs ├── SectionOfSocialMedia.cs └── packages.config ├── Section2 ├── ClassLibraryPractice.sln ├── ClassLibraryPractice │ ├── Class1.cs │ ├── ClassLibraryPractice.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Section2 Practice.csproj │ └── packages.config └── ClassLibraryTest │ ├── ClassLibraryTest.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── Section2 Test.csproj │ ├── UnitTest1.cs │ └── packages.config ├── Section3 ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Section3.csproj ├── UnitTest1.cs └── packages.config ├── Section4 ├── UnitTestPractice.sln └── UnitTestPractice │ ├── Data │ └── data.csv │ ├── DataTesting.cs │ ├── IntroTesting.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Section4.csproj │ ├── SectionExam.cs │ ├── TestExample1.cs │ ├── TestingAssertions.cs │ ├── UnitTest1.cs │ ├── UnitTestPractice.csproj │ └── packages.config ├── Section5 └── Section5 │ ├── DecimalOperations.cs │ ├── EqualityAndRelationship.cs │ ├── FloatingPointOperations.cs │ ├── IfAndElse.cs │ ├── IntegerOperations.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Section5.csproj │ ├── SectionExam.cs │ ├── SectionQuiz.cs │ └── packages.config ├── Section6 ├── Car.cs ├── CarTest.cs ├── Employee.cs ├── EmployeeTest.cs ├── Properties │ └── AssemblyInfo.cs ├── Section6.csproj ├── SectionQuiz.cs ├── StringClassTest.cs ├── Trip.cs ├── TripTest.cs ├── UnitTest1.cs └── packages.config ├── Section7 ├── Properties │ └── AssemblyInfo.cs ├── Receipt.cs ├── ReceiptTest.cs ├── Section7.csproj └── packages.config ├── Section8 ├── BreakAndContinue.cs ├── CodingQuiz.cs ├── DoWhile.cs ├── ForLoops.cs ├── ItemPrice.cs ├── LoopExample │ ├── App.config │ ├── LoopExample.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── Properties │ └── AssemblyInfo.cs ├── Section8.csproj ├── SectionExamTest.cs ├── SwitchStatements.cs ├── WhileLoops.cs └── packages.config ├── Section9 ├── Employee.cs ├── MathFunctions.cs ├── MathFunctionsTest.cs ├── MathHelper.cs ├── MethodTest.cs ├── Properties │ └── AssemblyInfo.cs ├── PropertyTaxCalc.cs ├── PropertyTaxCalcTest.cs ├── Section9.csproj └── packages.config ├── SectionExam ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── SectionExam.csproj └── UnitTestProject ├── Properties └── AssemblyInfo.cs ├── Section4.csproj ├── Test3.cs ├── Tests2.cs ├── UnitTest1.cs └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/.gitignore -------------------------------------------------------------------------------- /ClassLibraryPractice/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/ClassLibraryPractice/Class1.cs -------------------------------------------------------------------------------- /ClassLibraryPractice/ClassLibraryPractice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/ClassLibraryPractice/ClassLibraryPractice.csproj -------------------------------------------------------------------------------- /ClassLibraryPractice/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/ClassLibraryPractice/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CodingQuiz/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/CodingQuiz/App.config -------------------------------------------------------------------------------- /CodingQuiz/CodingQuiz.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/CodingQuiz/CodingQuiz.csproj -------------------------------------------------------------------------------- /CodingQuiz/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/CodingQuiz/Program.cs -------------------------------------------------------------------------------- /CodingQuiz/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/CodingQuiz/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CodingQuiz/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/CodingQuiz/packages.config -------------------------------------------------------------------------------- /Course.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Course.sln -------------------------------------------------------------------------------- /Hello.World/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Hello.World/App.config -------------------------------------------------------------------------------- /Hello.World/Hello.World.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Hello.World/Hello.World.csproj -------------------------------------------------------------------------------- /Hello.World/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Hello.World/Program.cs -------------------------------------------------------------------------------- /Hello.World/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Hello.World/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HelloWorld/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/HelloWorld/App.config -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/HelloWorld/HelloWorld.csproj -------------------------------------------------------------------------------- /HelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/HelloWorld/Program.cs -------------------------------------------------------------------------------- /HelloWorld/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/HelloWorld/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/README.md -------------------------------------------------------------------------------- /Section 12/Exam/Exam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section 12/Exam/Exam.cs -------------------------------------------------------------------------------- /Section 12/Exam/IPageObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section 12/Exam/IPageObject.cs -------------------------------------------------------------------------------- /Section 12/Exam/PageObjectOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section 12/Exam/PageObjectOne.cs -------------------------------------------------------------------------------- /Section 12/Exam/PageObjectTwo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section 12/Exam/PageObjectTwo.cs -------------------------------------------------------------------------------- /Section 12/Exam/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section 12/Exam/packages.config -------------------------------------------------------------------------------- /Section 12/ITransactions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section 12/ITransactions.cs -------------------------------------------------------------------------------- /Section 12/ITraveler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section 12/ITraveler.cs -------------------------------------------------------------------------------- /Section 12/InterfaceSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section 12/InterfaceSample.cs -------------------------------------------------------------------------------- /Section 12/InterfaceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section 12/InterfaceTest.cs -------------------------------------------------------------------------------- /Section 12/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section 12/Person.cs -------------------------------------------------------------------------------- /Section 12/Professor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section 12/Professor.cs -------------------------------------------------------------------------------- /Section 12/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section 12/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Section 12/Section12.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section 12/Section12.csproj -------------------------------------------------------------------------------- /Section 12/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section 12/Student.cs -------------------------------------------------------------------------------- /Section 12/Transaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section 12/Transaction.cs -------------------------------------------------------------------------------- /Section 12/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section 12/packages.config -------------------------------------------------------------------------------- /Section1/HelloWorld/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section1/HelloWorld/App.config -------------------------------------------------------------------------------- /Section1/HelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section1/HelloWorld/Program.cs -------------------------------------------------------------------------------- /Section1/HelloWorld/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section1/HelloWorld/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Section1/HelloWorld/Section1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section1/HelloWorld/Section1.csproj -------------------------------------------------------------------------------- /Section1/HelloWorld/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section1/HelloWorld/packages.config -------------------------------------------------------------------------------- /Section10/ArrayTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section10/ArrayTest.cs -------------------------------------------------------------------------------- /Section10/ListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section10/ListTest.cs -------------------------------------------------------------------------------- /Section10/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section10/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Section10/Section10.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section10/Section10.csproj -------------------------------------------------------------------------------- /Section10/SectionExam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section10/SectionExam.cs -------------------------------------------------------------------------------- /Section10/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section10/packages.config -------------------------------------------------------------------------------- /Section11/AdvancedOO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section11/AdvancedOO.csproj -------------------------------------------------------------------------------- /Section11/Exam/AutoLoan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section11/Exam/AutoLoan.cs -------------------------------------------------------------------------------- /Section11/Exam/ExamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section11/Exam/ExamTest.cs -------------------------------------------------------------------------------- /Section11/Exam/HomeLoan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section11/Exam/HomeLoan.cs -------------------------------------------------------------------------------- /Section11/Exam/Loan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section11/Exam/Loan.cs -------------------------------------------------------------------------------- /Section11/InheritanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section11/InheritanceTest.cs -------------------------------------------------------------------------------- /Section11/Pen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section11/Pen.cs -------------------------------------------------------------------------------- /Section11/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section11/Person.cs -------------------------------------------------------------------------------- /Section11/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section11/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Section11/Quiz/Lecture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section11/Quiz/Lecture.cs -------------------------------------------------------------------------------- /Section11/Quiz/Musical.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section11/Quiz/Musical.cs -------------------------------------------------------------------------------- /Section11/Quiz/Play.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section11/Quiz/Play.cs -------------------------------------------------------------------------------- /Section11/Quiz/QuizTicketTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section11/Quiz/QuizTicketTest.cs -------------------------------------------------------------------------------- /Section11/Quiz/Ticket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section11/Quiz/Ticket.cs -------------------------------------------------------------------------------- /Section11/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section11/Student.cs -------------------------------------------------------------------------------- /Section11/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section11/UnitTest1.cs -------------------------------------------------------------------------------- /Section11/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section11/packages.config -------------------------------------------------------------------------------- /Section12/Exam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section12/Exam.cs -------------------------------------------------------------------------------- /Section12/IPageObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section12/IPageObject.cs -------------------------------------------------------------------------------- /Section12/PageObjectOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section12/PageObjectOne.cs -------------------------------------------------------------------------------- /Section12/PageObjectOne1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section12/PageObjectOne1.cs -------------------------------------------------------------------------------- /Section12/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section12/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Section12/Section12.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section12/Section12.csproj -------------------------------------------------------------------------------- /Section12/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section12/packages.config -------------------------------------------------------------------------------- /Section13/CustomException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section13/CustomException.cs -------------------------------------------------------------------------------- /Section13/Exam/ExamHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section13/Exam/ExamHelper.cs -------------------------------------------------------------------------------- /Section13/Exam/ExamTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section13/Exam/ExamTester.cs -------------------------------------------------------------------------------- /Section13/ExceptionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section13/ExceptionHelper.cs -------------------------------------------------------------------------------- /Section13/ExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section13/ExceptionTests.cs -------------------------------------------------------------------------------- /Section13/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section13/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Section13/Quiz/BodyMassIndexCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section13/Quiz/BodyMassIndexCalculator.cs -------------------------------------------------------------------------------- /Section13/Quiz/QuizTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section13/Quiz/QuizTester.cs -------------------------------------------------------------------------------- /Section13/Section13.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section13/Section13.csproj -------------------------------------------------------------------------------- /Section13/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section13/packages.config -------------------------------------------------------------------------------- /Section14/AdvancedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section14/AdvancedTest.cs -------------------------------------------------------------------------------- /Section14/CastingClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section14/CastingClasses.cs -------------------------------------------------------------------------------- /Section14/DelegateDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section14/DelegateDemo.cs -------------------------------------------------------------------------------- /Section14/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section14/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Section14/QuizTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section14/QuizTest.cs -------------------------------------------------------------------------------- /Section14/RegularExpressionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section14/RegularExpressionsTest.cs -------------------------------------------------------------------------------- /Section14/Section14.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section14/Section14.csproj -------------------------------------------------------------------------------- /Section14/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section14/packages.config -------------------------------------------------------------------------------- /Section15/BasePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/BasePage.cs -------------------------------------------------------------------------------- /Section15/ComplicatedPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/ComplicatedPage.cs -------------------------------------------------------------------------------- /Section15/Element.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/Element.cs -------------------------------------------------------------------------------- /Section15/Final Exam 1/BasePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/Final Exam 1/BasePage.cs -------------------------------------------------------------------------------- /Section15/Final Exam 1/ComplicatedPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/Final Exam 1/ComplicatedPage.cs -------------------------------------------------------------------------------- /Section15/Final Exam 1/Element.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/Final Exam 1/Element.cs -------------------------------------------------------------------------------- /Section15/Final Exam 1/FinalExam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/Final Exam 1/FinalExam.cs -------------------------------------------------------------------------------- /Section15/Final Exam 1/SectionOfButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/Final Exam 1/SectionOfButtons.cs -------------------------------------------------------------------------------- /Section15/Final Exam 1/SectionOfRandomStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/Final Exam 1/SectionOfRandomStuff.cs -------------------------------------------------------------------------------- /Section15/Final Exam 1/SectionOfSocialMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/Final Exam 1/SectionOfSocialMedia.cs -------------------------------------------------------------------------------- /Section15/Final Exam 2/Housing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/Final Exam 2/Housing.cs -------------------------------------------------------------------------------- /Section15/Final Exam 2/HousingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/Final Exam 2/HousingTest.cs -------------------------------------------------------------------------------- /Section15/Final Exam 2/IUnits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/Final Exam 2/IUnits.cs -------------------------------------------------------------------------------- /Section15/Final Exam 2/MultiUnits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/Final Exam 2/MultiUnits.cs -------------------------------------------------------------------------------- /Section15/Final Exam 2/SingleFamily.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/Final Exam 2/SingleFamily.cs -------------------------------------------------------------------------------- /Section15/FinalExam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/FinalExam.cs -------------------------------------------------------------------------------- /Section15/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Section15/Section15.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/Section15.csproj -------------------------------------------------------------------------------- /Section15/SectionOfButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/SectionOfButtons.cs -------------------------------------------------------------------------------- /Section15/SectionOfRandomStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/SectionOfRandomStuff.cs -------------------------------------------------------------------------------- /Section15/SectionOfSocialMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/SectionOfSocialMedia.cs -------------------------------------------------------------------------------- /Section15/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section15/packages.config -------------------------------------------------------------------------------- /Section2/ClassLibraryPractice.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section2/ClassLibraryPractice.sln -------------------------------------------------------------------------------- /Section2/ClassLibraryPractice/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section2/ClassLibraryPractice/Class1.cs -------------------------------------------------------------------------------- /Section2/ClassLibraryPractice/ClassLibraryPractice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section2/ClassLibraryPractice/ClassLibraryPractice.csproj -------------------------------------------------------------------------------- /Section2/ClassLibraryPractice/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section2/ClassLibraryPractice/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Section2/ClassLibraryPractice/Section2 Practice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section2/ClassLibraryPractice/Section2 Practice.csproj -------------------------------------------------------------------------------- /Section2/ClassLibraryPractice/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section2/ClassLibraryPractice/packages.config -------------------------------------------------------------------------------- /Section2/ClassLibraryTest/ClassLibraryTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section2/ClassLibraryTest/ClassLibraryTest.csproj -------------------------------------------------------------------------------- /Section2/ClassLibraryTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section2/ClassLibraryTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Section2/ClassLibraryTest/Section2 Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section2/ClassLibraryTest/Section2 Test.csproj -------------------------------------------------------------------------------- /Section2/ClassLibraryTest/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section2/ClassLibraryTest/UnitTest1.cs -------------------------------------------------------------------------------- /Section2/ClassLibraryTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section2/ClassLibraryTest/packages.config -------------------------------------------------------------------------------- /Section3/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section3/App.config -------------------------------------------------------------------------------- /Section3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section3/Program.cs -------------------------------------------------------------------------------- /Section3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section3/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Section3/Section3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section3/Section3.csproj -------------------------------------------------------------------------------- /Section3/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section3/UnitTest1.cs -------------------------------------------------------------------------------- /Section3/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section3/packages.config -------------------------------------------------------------------------------- /Section4/UnitTestPractice.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section4/UnitTestPractice.sln -------------------------------------------------------------------------------- /Section4/UnitTestPractice/Data/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section4/UnitTestPractice/Data/data.csv -------------------------------------------------------------------------------- /Section4/UnitTestPractice/DataTesting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section4/UnitTestPractice/DataTesting.cs -------------------------------------------------------------------------------- /Section4/UnitTestPractice/IntroTesting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section4/UnitTestPractice/IntroTesting.cs -------------------------------------------------------------------------------- /Section4/UnitTestPractice/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section4/UnitTestPractice/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Section4/UnitTestPractice/Section4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section4/UnitTestPractice/Section4.csproj -------------------------------------------------------------------------------- /Section4/UnitTestPractice/SectionExam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section4/UnitTestPractice/SectionExam.cs -------------------------------------------------------------------------------- /Section4/UnitTestPractice/TestExample1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section4/UnitTestPractice/TestExample1.cs -------------------------------------------------------------------------------- /Section4/UnitTestPractice/TestingAssertions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section4/UnitTestPractice/TestingAssertions.cs -------------------------------------------------------------------------------- /Section4/UnitTestPractice/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section4/UnitTestPractice/UnitTest1.cs -------------------------------------------------------------------------------- /Section4/UnitTestPractice/UnitTestPractice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section4/UnitTestPractice/UnitTestPractice.csproj -------------------------------------------------------------------------------- /Section4/UnitTestPractice/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section4/UnitTestPractice/packages.config -------------------------------------------------------------------------------- /Section5/Section5/DecimalOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section5/Section5/DecimalOperations.cs -------------------------------------------------------------------------------- /Section5/Section5/EqualityAndRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section5/Section5/EqualityAndRelationship.cs -------------------------------------------------------------------------------- /Section5/Section5/FloatingPointOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section5/Section5/FloatingPointOperations.cs -------------------------------------------------------------------------------- /Section5/Section5/IfAndElse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section5/Section5/IfAndElse.cs -------------------------------------------------------------------------------- /Section5/Section5/IntegerOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section5/Section5/IntegerOperations.cs -------------------------------------------------------------------------------- /Section5/Section5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section5/Section5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Section5/Section5/Section5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section5/Section5/Section5.csproj -------------------------------------------------------------------------------- /Section5/Section5/SectionExam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section5/Section5/SectionExam.cs -------------------------------------------------------------------------------- /Section5/Section5/SectionQuiz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section5/Section5/SectionQuiz.cs -------------------------------------------------------------------------------- /Section5/Section5/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section5/Section5/packages.config -------------------------------------------------------------------------------- /Section6/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section6/Car.cs -------------------------------------------------------------------------------- /Section6/CarTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section6/CarTest.cs -------------------------------------------------------------------------------- /Section6/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section6/Employee.cs -------------------------------------------------------------------------------- /Section6/EmployeeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section6/EmployeeTest.cs -------------------------------------------------------------------------------- /Section6/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section6/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Section6/Section6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section6/Section6.csproj -------------------------------------------------------------------------------- /Section6/SectionQuiz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section6/SectionQuiz.cs -------------------------------------------------------------------------------- /Section6/StringClassTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section6/StringClassTest.cs -------------------------------------------------------------------------------- /Section6/Trip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section6/Trip.cs -------------------------------------------------------------------------------- /Section6/TripTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section6/TripTest.cs -------------------------------------------------------------------------------- /Section6/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section6/UnitTest1.cs -------------------------------------------------------------------------------- /Section6/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section6/packages.config -------------------------------------------------------------------------------- /Section7/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section7/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Section7/Receipt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section7/Receipt.cs -------------------------------------------------------------------------------- /Section7/ReceiptTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section7/ReceiptTest.cs -------------------------------------------------------------------------------- /Section7/Section7.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section7/Section7.csproj -------------------------------------------------------------------------------- /Section7/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section7/packages.config -------------------------------------------------------------------------------- /Section8/BreakAndContinue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section8/BreakAndContinue.cs -------------------------------------------------------------------------------- /Section8/CodingQuiz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section8/CodingQuiz.cs -------------------------------------------------------------------------------- /Section8/DoWhile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section8/DoWhile.cs -------------------------------------------------------------------------------- /Section8/ForLoops.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section8/ForLoops.cs -------------------------------------------------------------------------------- /Section8/ItemPrice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section8/ItemPrice.cs -------------------------------------------------------------------------------- /Section8/LoopExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section8/LoopExample/App.config -------------------------------------------------------------------------------- /Section8/LoopExample/LoopExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section8/LoopExample/LoopExample.csproj -------------------------------------------------------------------------------- /Section8/LoopExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section8/LoopExample/Program.cs -------------------------------------------------------------------------------- /Section8/LoopExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section8/LoopExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Section8/LoopExample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section8/LoopExample/packages.config -------------------------------------------------------------------------------- /Section8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section8/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Section8/Section8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section8/Section8.csproj -------------------------------------------------------------------------------- /Section8/SectionExamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section8/SectionExamTest.cs -------------------------------------------------------------------------------- /Section8/SwitchStatements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section8/SwitchStatements.cs -------------------------------------------------------------------------------- /Section8/WhileLoops.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section8/WhileLoops.cs -------------------------------------------------------------------------------- /Section8/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section8/packages.config -------------------------------------------------------------------------------- /Section9/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section9/Employee.cs -------------------------------------------------------------------------------- /Section9/MathFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section9/MathFunctions.cs -------------------------------------------------------------------------------- /Section9/MathFunctionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section9/MathFunctionsTest.cs -------------------------------------------------------------------------------- /Section9/MathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section9/MathHelper.cs -------------------------------------------------------------------------------- /Section9/MethodTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section9/MethodTest.cs -------------------------------------------------------------------------------- /Section9/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section9/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Section9/PropertyTaxCalc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section9/PropertyTaxCalc.cs -------------------------------------------------------------------------------- /Section9/PropertyTaxCalcTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section9/PropertyTaxCalcTest.cs -------------------------------------------------------------------------------- /Section9/Section9.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section9/Section9.csproj -------------------------------------------------------------------------------- /Section9/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/Section9/packages.config -------------------------------------------------------------------------------- /SectionExam/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/SectionExam/App.config -------------------------------------------------------------------------------- /SectionExam/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/SectionExam/Program.cs -------------------------------------------------------------------------------- /SectionExam/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/SectionExam/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SectionExam/SectionExam.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/SectionExam/SectionExam.csproj -------------------------------------------------------------------------------- /UnitTestProject/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/UnitTestProject/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnitTestProject/Section4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/UnitTestProject/Section4.csproj -------------------------------------------------------------------------------- /UnitTestProject/Test3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/UnitTestProject/Test3.cs -------------------------------------------------------------------------------- /UnitTestProject/Tests2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/UnitTestProject/Tests2.cs -------------------------------------------------------------------------------- /UnitTestProject/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/UnitTestProject/UnitTest1.cs -------------------------------------------------------------------------------- /UnitTestProject/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nadvolod/CSharpLesons/HEAD/UnitTestProject/packages.config --------------------------------------------------------------------------------