Удален по просьбе правообладателя
  1. Урок 1. 00:01:58
    Course Overview
  2. Урок 2. 00:01:03
    Overview
  3. Урок 3. 00:02:07
    What Is a Collection?
  4. Урок 4. 00:02:30
    The Array: A Fixed Size Ordered Collection
  5. Урок 5. 00:04:05
    Enumerating an Array
  6. Урок 6. 00:00:47
    Some Collection Terminology
  7. Урок 7. 00:03:36
    Looking up Array Items
  8. Урок 8. 00:02:57
    Arrays Are Zero-indexed
  9. Урок 9. 00:01:00
    Collections Are Safe
  10. Урок 10. 00:02:12
    Converting Between Zero-based and One-based Indexing
  11. Урок 11. 00:02:41
    Replacing Array Items
  12. Урок 12. 00:01:32
    Debugging with Arrays
  13. Урок 13. 00:01:06
    From Arrays to Other Collections
  14. Урок 14. 00:01:06
    Summary
  15. Урок 15. 00:00:56
    Overview
  16. Урок 16. 00:04:13
    The Demo Sample: Importing Countries
  17. Урок 17. 00:00:46
    You Can't Enumerate Null
  18. Урок 18. 00:03:33
    Instantiating an Array by Size
  19. Урок 19. 00:02:08
    The CSV Data Source
  20. Урок 20. 00:04:18
    Parsing a CSV Line with String.Split()
  21. Урок 21. 00:01:36
    Arrays and Params Arguments
  22. Урок 22. 00:03:09
    Populating the Array with a For Loop
  23. Урок 23. 00:02:47
    Formatting the Large Numbers
  24. Урок 24. 00:03:13
    Instantiating an Array: Review
  25. Урок 25. 00:01:14
    Summary
  26. Урок 26. 00:00:42
    Overview
  27. Урок 27. 00:02:21
    Arrays Are a Fixed Size
  28. Урок 28. 00:01:57
    Introducing List<T>
  29. Урок 29. 00:01:55
    Adding Items with List<T>.Add() and Collection Intializers
  30. Урок 30. 00:01:19
    List<T> Is a Generic Type
  31. Урок 31. 00:02:38
    Importing from the CSV File into a List
  32. Урок 32. 00:01:04
    Enumerating a List
  33. Урок 33. 00:02:23
    CSV Embedded Commas
  34. Урок 34. 00:03:09
    Counting Elements with Array.Length
  35. Урок 35. 00:01:17
    Counting Elements with List<T>.Count
  36. Урок 36. 00:02:09
    Inserting with List<T>.Insert()
  37. Урок 37. 00:03:33
    Searching with List<T>.FindIndex()
  38. Урок 38. 00:01:50
    Removing with List<T>.RemoveAt()
  39. Урок 39. 00:01:22
    Lists and Performance
  40. Урок 40. 00:01:04
    Summary
  41. Урок 41. 00:00:42
    Overview
  42. Урок 42. 00:01:57
    Lists and Arrays Require an Index
  43. Урок 43. 00:02:04
    Introducing Dictionary<TKey, TValue>
  44. Урок 44. 00:01:47
    Instantiating a Dictionary
  45. Урок 45. 00:01:56
    Adding Items to a Dictionary with Add()
  46. Урок 46. 00:02:08
    Using Keys to Look up Dictionary Items
  47. Урок 47. 00:01:59
    Enumerating Dictionary Items
  48. Урок 48. 00:01:52
    Understanding KeyValuePair<TKey, TValue>
  49. Урок 49. 00:01:43
    Dictionary Initializers
  50. Урок 50. 00:01:55
    Keys Are Unique!
  51. Урок 51. 00:02:27
    The Uncertainty of Dictionary Lookups
  52. Урок 52. 00:02:02
    Looking up Items with TryGetValue()
  53. Урок 53. 00:03:00
    Demo: Importing the Countries into a Dictionary
  54. Урок 54. 00:01:16
    Summary
  55. Урок 55. 00:01:13
    Overview
  56. Урок 56. 00:02:44
    Enumerating: for vs. foreach
  57. Урок 57. 00:02:23
    Loop Termination Conditions
  58. Урок 58. 00:02:26
    Iterating Only Some Items
  59. Урок 59. 00:02:51
    Batching an Iteration
  60. Урок 60. 00:01:39
    Displaying the Order When Enumerating
  61. Урок 61. 00:03:00
    Enumerating Backwards
  62. Урок 62. 00:03:06
    Systematically Removing Elements from a List
  63. Урок 63. 00:02:26
    Keeping the Index in Sync: The Hidden Gotcha
  64. Урок 64. 00:01:22
    foreach Is Readonly
  65. Урок 65. 00:02:13
    Removing Elements with Removeall()
  66. Урок 66. 00:01:06
    Summary
  67. Урок 67. 00:00:58
    Overview
  68. Урок 68. 00:01:13
    Limiting How Many Results with Take
  69. Урок 69. 00:02:51
    Ordering Data with OrderBy
  70. Урок 70. 00:02:43
    Chaining LINQ Methods
  71. Урок 71. 00:02:34
    How Does LINQ Work?
  72. Урок 72. 00:03:00
    LINQ Chaining Explained
  73. Урок 73. 00:03:07
    Filtering Data with Where
  74. Урок 74. 00:02:27
    Chaining Order Matters... Again!
  75. Урок 75. 00:04:32
    LINQ Query Syntax
  76. Урок 76. 00:02:47
    LINQ vs. For Loop vs. Collection Methods
  77. Урок 77. 00:01:13
    Summary
  78. Урок 78. 00:00:59
    Overview
  79. Урок 79. 00:02:27
    Partitioning Data with a Dictionary
  80. Урок 80. 00:03:43
    Importing the Countries into the Dictionary of List
  81. Урок 81. 00:02:27
    Enumerating Dictionary Keys
  82. Урок 82. 00:02:17
    Jagged Arrays
  83. Урок 83. 00:03:14
    The Noughts and Crosses Demo: Instantiating a Jagged Array
  84. Урок 84. 00:01:19
    The Game Logic
  85. Урок 85. 00:04:06
    Accessing Jagged Array Elements with Chained Look-ups
  86. Урок 86. 00:02:49
    Multidimensional Arrays
  87. Урок 87. 00:01:07
    Summary
  88. Урок 88. 00:02:03
    Overview
  89. Урок 89. 00:03:53
    Standard Generic Collections
  90. Урок 90. 00:01:24
    Immutable Collections
  91. Урок 91. 00:01:56
    Concurrent Collections
  92. Урок 92. 00:01:24
    LINQ
  93. Урок 93. 00:03:59
    Collection Interfaces
  94. Урок 94. 00:01:52
    Course Summary