This course will be retired on July 14, 2025.
- HashSet 5:29
- Hashing 6:48
- GetHashCode and Equals Methods 4:03
- Hash Codes and Object Equality 5 questions
- Dictionary 11:29
- Dictionary 1 objective
- Dictionary Keys and Values 6:06
- Using Dictionaries 2 objectives
- The System.Collections.Generic Namespace 3:00
- The System.Collections Namespace 3:24
- Other Collection Types 4 questions
Quiz Question 1 of 5
Which expression is likely to be true about the two Department objects?
class Department
{
public int Id { get; set; }
public string Name { get; set; }
}
Department dept1 = new Department();
Department dept2 = new Department();
Choose the correct answer below: