1. Урок 1. 00:01:28
    Course Overview
  2. Урок 2. 00:01:01
    Introduction
  3. Урок 3. 00:02:35
    Downloading .NET for Windows, macOS, and Linux
  4. Урок 4. 00:01:44
    Understanding .NET and .NET Core
  5. Урок 5. 00:02:38
    Understanding the .NET Runtime and Framework
  6. Урок 6. 00:03:55
    Using the .NET Command Line Interface
  7. Урок 7. 00:05:10
    Creating the First C# Project
  8. Урок 8. 00:04:40
    Editing C# Code with Visual Studio Code
  9. Урок 9. 00:06:35
    Running and Building Your Project
  10. Урок 10. 00:07:45
    Saying Hello with C#
  11. Урок 11. 00:09:21
    Debugging a C# Application
  12. Урок 12. 00:00:47
    Summary
  13. Урок 13. 00:00:32
    Introduction
  14. Урок 14. 00:01:30
    Reviewing Your Assignment
  15. Урок 15. 00:09:01
    Working with Code Blocks and Statements
  16. Урок 16. 00:07:12
    Adding Numbers and Creating Arrays
  17. Урок 17. 00:06:14
    Looping through Arrays
  18. Урок 18. 00:07:45
    Using a List
  19. Урок 19. 00:02:57
    Computing and Formatting the Result
  20. Урок 20. 00:00:31
    Summary
  21. Урок 21. 00:00:30
    Introduction
  22. Урок 22. 00:06:29
    Creating a Class
  23. Урок 23. 00:03:31
    Adding State and Behavior
  24. Урок 24. 00:02:32
    Defining a Method
  25. Урок 25. 00:02:41
    Defining a Field
  26. Урок 26. 00:07:44
    Adding a Constructor
  27. Урок 27. 00:07:07
    Requiring Constructor Parameters
  28. Урок 28. 00:09:00
    Working with Static Members
  29. Урок 29. 00:02:07
    Computing Statistics
  30. Урок 30. 00:02:56
    Solving the Statistics Challenge
  31. Урок 31. 00:00:37
    Summary
  32. Урок 32. 00:00:35
    Introduction
  33. Урок 33. 00:02:25
    The Many Benefits of Unit Testing
  34. Урок 34. 00:04:39
    Creating a Unit Test Project
  35. Урок 35. 00:07:41
    Writing and Running a Test
  36. Урок 36. 00:08:16
    Referencing Projects and Packages
  37. Урок 37. 00:11:13
    Refactoring for Testability
  38. Урок 38. 00:00:28
    Summary
  39. Урок 39. 00:00:30
    Introduction
  40. Урок 40. 00:03:48
    Reference Types and Value Types
  41. Урок 41. 00:03:01
    Creating a Solution File
  42. Урок 42. 00:06:46
    Testing Object References
  43. Урок 43. 00:03:56
    Referencing Different Objects
  44. Урок 44. 00:02:11
    Passing Parameters by Value
  45. Урок 45. 00:04:20
    Returning Object References
  46. Урок 46. 00:04:46
    Passing Parameters by Reference
  47. Урок 47. 00:02:08
    Working with Value Types
  48. Урок 48. 00:01:30
    Value Type Parameters
  49. Урок 49. 00:06:02
    Looking for Reference Types and Value Types
  50. Урок 50. 00:04:15
    The Special Case of Strings in .NET
  51. Урок 51. 00:01:45
    Taking Advantage of Garbage Collection
  52. Урок 52. 00:00:30
    Summary
  53. Урок 53. 00:00:34
    Introduction
  54. Урок 54. 00:05:02
    Branching with if Statements
  55. Урок 55. 00:07:21
    Looping with for, foreach, do, and while
  56. Урок 56. 00:02:53
    Jumping with break and continue
  57. Урок 57. 00:05:49
    Switching with the switch Statement
  58. Урок 58. 00:04:37
    Pattern Matching with switch
  59. Урок 59. 00:01:50
    Challenge: Taking User Input from the Console
  60. Урок 60. 00:04:36
    One Solution
  61. Урок 61. 00:04:25
    Throwing Exceptions
  62. Урок 62. 00:06:21
    Catching Exceptions
  63. Урок 63. 00:00:23
    Summary
  64. Урок 64. 00:00:18
    Introduction
  65. Урок 65. 00:03:27
    Overloading Methods
  66. Урок 66. 00:05:08
    Defining Properties
  67. Урок 67. 00:03:27
    Defining Property Getters and Setters
  68. Урок 68. 00:02:10
    Defining readonly Members
  69. Урок 69. 00:03:04
    Defining const Members
  70. Урок 70. 00:01:10
    Introducing Events and Delegates
  71. Урок 71. 00:08:27
    Defining a Delegate
  72. Урок 72. 00:04:42
    Using Multi-cast Delegates
  73. Урок 73. 00:08:02
    Defining an Event
  74. Урок 74. 00:05:59
    Subscribing to an Event
  75. Урок 75. 00:00:23
    Summary
  76. Урок 76. 00:00:23
    Introduction
  77. Урок 77. 00:01:26
    The Pillars of OOP
  78. Урок 78. 00:04:41
    Deriving from a Base Class
  79. Урок 79. 00:03:22
    Chaining Constructors
  80. Урок 80. 00:02:56
    Deriving from System.Object
  81. Урок 81. 00:03:45
    Setting up a Scenario
  82. Урок 82. 00:06:39
    Defining an Abstract Class
  83. Урок 83. 00:07:08
    Defining an Interface
  84. Урок 84. 00:06:03
    Writing Grades to a File
  85. Урок 85. 00:06:03
    Using IDisposable
  86. Урок 86. 00:03:31
    A Statistical Challenge
  87. Урок 87. 00:09:10
    Refactoring Statistics
  88. Урок 88. 00:00:50
    Summary
  89. Урок 89. 00:00:18
    Introduction
  90. Урок 90. 00:07:33
    Working with Non-nullable Reference Types
  91. Урок 91. 00:00:18
    Summary
  92. Урок 92. 00:00:19
    Introduction
  93. Урок 93. 00:00:40
    Generics
  94. Урок 94. 00:00:21
    Async C#
  95. Урок 95. 00:00:29
    LINQ
  96. Урок 96. 00:00:44
    Effective C#