Data dictionaries Flashcards

1
Q

How do you add elements to a data dictionary?

A

students.Add(“Johdn”, “C”);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you create a data dictionary?

A

Dictionary<string, string> students = new Dictionary<string, string>();

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How do you traverse a data dictionary?

A

foreach(KeyValuePair<string, string> kvp in students)
{
Console.WriteLine($”{kvp.Key}, {kvp.Value}”);
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly