Programming C# 6, (Part 12 of 12): Arrays and Sorting
Interactive

Programming C# 6, (Part 12 of 12): Arrays and Sorting

Biz Library
Updated Feb 04, 2020

According to programming expert Don Kiely, it’s hard to imagine a C# application that doesn’t make use of the language element known as arrays. In this course Kiely examines what arrays are and how to create and initialize them with data. He will also explore the support that the .NET framework offers arrays as well as how to use advanced sorting techniques.


Lesson 1:

  • Introducing Arrays
  • Demo: Creating an Array
  • Array Dimensions
  • Demo: Resizing Arrays
  • Demo: Cloning an Array.

Lesson 2:

  • Demo: Initializing Arrays
  • Demo: Retrieving Data
  • Demo: Print Elements.

Lesson 3:

  • Demo: Params
  • Demo: Using Params.

Lesson 4:

  • Demo: ArraysInTheFramwork
  • Demo: Processes.

Lesson 5:

  • System.Array Instance Members
  • Demo: Sorting an Array
  • Sorting an Array of Objects
  • Demo: Invalid Sort.

Lesson 6:

  • Demo: Overloaded Sorting
  • Demo: Sorting Files
  • Demo: IComparer.

Lesson 7:

  • Advanced Sorting
  • Demo: Advanced Sorting
  • Summarizing the Sort Options.

Lesson 8:

  • Demo: IndexOf
  • Demo: Binary Search
  • Advanced Searching Techniques
  • Demo: Advanced Searching.

Lesson 9:

  • Demo: Resize Array
  • Demo: Indexers
  • Demo: Iterate Through Arrays.