FileMood

Download Pluralsight - C# Collections Fundamentals

Pluralsight Collections Fundamentals

Name

Pluralsight - C# Collections Fundamentals

 DOWNLOAD Copy Link

Total Size

1.1 GB

Total Files

109

Hash

3D2299742C96CFBDB0664BF9B15DCA891BE86281

/01. Course Welcome/

01_01-Course Overview.mp4

8.5 MB

/02. Introducing C# Collections/

02_01-Overview.mp4

3.8 MB

02_02-What is a Collection.mp4

5.5 MB

02_03-Lists.mp4

6.8 MB

02_04-Dictionaries.mp4

8.3 MB

02_05-Sets.mp4

5.2 MB

02_06-Collection Operations.mp4

12.6 MB

02_07-.NET Collections A Brief History.mp4

18.7 MB

02_08-C# Collections Today.mp4

4.1 MB

02_09-Summary.mp4

3.8 MB

/03. Inside Arrays/

03_01-Overview.mp4

3.0 MB

03_02-What are Arrays.mp4

3.6 MB

03_03-Arrays in C# Basic Usage.mp4

34.6 MB

03_04-Arrays Under the Hood.mp4

4.7 MB

03_05-Why Element Look-up is Fast.mp4

12.4 MB

03_06-Why You Can't Change Array Sizes.mp4

7.7 MB

03_07-How Arrays are Initialized.mp4

22.9 MB

03_08-C# Syntax for Declaring Arrays.mp4

12.2 MB

03_09-Enumerating Arrays for and foreach.mp4

19.7 MB

03_10-foreach is Read-Only.mp4

21.5 MB

03_11-Replacing vs. Modifying Elements.mp4

7.8 MB

03_12-Summary.mp4

3.3 MB

/04. The Array Type/

04_01-Overview.mp4

1.9 MB

04_02-Arrays as Reference Types.mp4

12.8 MB

04_03-Storing Derived Instances in Arrays.mp4

5.4 MB

04_04-What Type is an Array.mp4

11.3 MB

04_05-Array Covariance.mp4

14.0 MB

04_06-What Arrays Can Do.mp4

10.3 MB

04_07-Copying Arrays.mp4

13.0 MB

04_08-Reversing Arrays.mp4

14.7 MB

04_09-Sorting Arrays and IComparerT.mp4

17.8 MB

04_10-Finding Elements IndexOf(), FindAll(), etc..mp4

15.8 MB

04_11-Binary Search.mp4

11.4 MB

04_12-Array Methods or LINQ.mp4

6.3 MB

04_13-Summary.mp4

2.5 MB

/05. Collection Interfaces/

05_01-Overview.mp4

4.3 MB

05_02-The Interface Inheritance Tree.mp4

4.5 MB

05_03-The Core Generic Interfaces.mp4

8.9 MB

05_04-The .NET 4.5 Readonly Interfaces.mp4

3.1 MB

05_05-The Old Non-generic Interfaces.mp4

4.8 MB

05_06-IEnumerableT.mp4

8.4 MB

05_07-ICollectionT.mp4

11.9 MB

05_08-The ICollectionT IsReadOnly Property.mp4

9.8 MB

05_09-Explicit Interface Implementation.mp4

5.5 MB

05_10-IReadOnlyCollectionT.mp4

1.9 MB

05_11-IListT.mp4

4.4 MB

05_12-IReadOnlyListT.mp4

2.0 MB

05_13-IDictionaryTKey, TValue.mp4

5.7 MB

05_14-IReadOnlyDictionaryTKey, TValue.mp4

2.4 MB

05_15-ISetT.mp4

2.2 MB

05_16-Summary.mp4

4.5 MB

/06. Lists/

06_01-Overview.mp4

3.4 MB

06_02-Introducing ListT.mp4

8.7 MB

06_03-ListT Under the Hood.mp4

31.3 MB

06_04-ListT Capabilities.mp4

11.8 MB

06_05-AsReadOnly() and ReadOnlyCollectionT.mp4

16.6 MB

06_06-CollectionT.mp4

27.2 MB

06_07-ObservableCollectionT.mp4

21.6 MB

06_08-Summary.mp4

2.9 MB

/07. Linked Lists, Stacks and Queues/

07_01-Overview.mp4

2.6 MB

07_02-Understanding Linked Lists.mp4

12.8 MB

07_03-LinkedListT and LinkedListNodeT.mp4

31.6 MB

07_04-StackT.mp4

22.5 MB

07_05-QueueT.mp4

15.0 MB

07_06-Summary.mp4

2.8 MB

/08. Dictionaries/

08_01-Overview.mp4

2.2 MB

08_02-Introducing DictionaryTKey,TValue.mp4

12.1 MB

08_03-Enumerating Dictionary Items.mp4

10.3 MB

08_04-Looking up Dictionary Items.mp4

10.0 MB

08_05-Modifying the Dictionary.mp4

11.6 MB

08_06-Comparing Keys with IEqualityComparerT.mp4

15.2 MB

08_07-DictionaryTKey,TValue Under the Hood.mp4

9.0 MB

08_08-GetHashCode() and the Hash Code.mp4

9.6 MB

08_09-Writing a Custom Equality Comparer.mp4

6.6 MB

08_10-ReadOnlyDictionaryTKey,TValue.mp4

8.7 MB

08_11-SortedListTKey,TValue.mp4

11.3 MB

08_12-Implementing a Custom IComparerT.mp4

14.9 MB

08_13-SortedDictionaryTKey,TValue.mp4

6.8 MB

08_14-Introducing KeyedCollectionTKey,TValue.mp4

19.6 MB

08_15-KeyedCollectionTKey,TValue as a List.mp4

6.9 MB

08_16-Summary.mp4

3.3 MB

/09. Sets/

09_01-Overview.mp4

2.0 MB

09_02-Introducing HashSetT.mp4

4.7 MB

09_03-HashSetT and Uniqueness.mp4

11.0 MB

09_04-HashSetT and Comparers.mp4

8.1 MB

09_05-Intersection and IntersectsWith().mp4

13.5 MB

09_06-Union, Difference and Symmetric Difference.mp4

10.0 MB

09_07-Comparing Elements and SetEquals().mp4

7.3 MB

09_08-Set Comparisons and Subsets.mp4

12.7 MB

09_09-SortedSetT.mp4

12.6 MB

09_10-Summary.mp4

2.5 MB

/10. Enumerators/

10_01-Overview.mp4

3.6 MB

10_02-Enumerators and IEnumeratorT.mp4

25.4 MB

10_03-The foreach Loop.mp4

11.3 MB

10_04-Why Don't Collections Enumerate Themselves.mp4

4.5 MB

10_05-Modifying While Enumerating.mp4

12.5 MB

10_06-Writing Your Own Enumerator.mp4

21.8 MB

10_07-Enumerable Covariance.mp4

23.1 MB

10_08-Summary.mp4

3.4 MB

/11. Multidimensional Arrays, Rank and Bounds/

11_01-Overview.mp4

2.3 MB

11_02-Multidimensional Arrays.mp4

11.8 MB

11_03-Multidimensional Arrays Demo.mp4

6.4 MB

11_04-Length and Rank.mp4

9.0 MB

11_05-Bounds, GetLowerBound() and GetUpperBound().mp4

9.4 MB

11_06-Jagged Arrays.mp4

3.2 MB

11_07-Jagged Arrays Demo.mp4

9.8 MB

11_08-Comparing Multidimensional and Jagged Arrays.mp4

3.5 MB

11_09-Module Summary.mp4

2.7 MB

11_10-Course Summary.mp4

5.4 MB

 

Total files 109


Copyright © 2024 FileMood.com