Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 467 Bytes

File metadata and controls

18 lines (13 loc) · 467 Bytes

Unit 1 - Lesson 6 Learning Objectives

Goals

  • Create and use dictionaries in C#

Objectives

  • Understand dictionaries are collections of key/value pairs
  • Create dictionaries
  • Describe the allowed data types of keys and values
  • Access and modify keys and values using both bracket syntax and dot-notation
  • Use a loop to iterate through the items in a dictionary
  • Understand some dictionary class methods