Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
132 views
in Technique[技术] by (71.8m points)

c# - Updating a list within a dictionary

I'm trying to update a list within a dictionary. I'm not sure whether my approach is the correct way to go about my problem.

I want to map keys against a list and thought I could do this with a dictionary

Dictionary<Occupation, List<Person>> personsWithOccupation = new Dictionary<Occupation, List<Person>>();

OnPersonAdded(Person person){ 
    Occupation occ = person.GetOccupation();
    personsWithOccupation.Add(occ, UPDATE LIST);
}

I understand that I could grab the list out of the dictionary, update it and put it back into the list, but my question, Am I going about this the wrong way?. Should I be mapping these values in a different, more efficient approach?

EDIT:

I'm going to consume these values like this

public List<Person> GetPersonsWithOccupation(Occupation occ){
     return personsWithOccupation[occ];
}
question from:https://stackoverflow.com/questions/65934344/updating-a-list-within-a-dictionary

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

you can add new person to occupation just like this:

OnPersonAdded(Person person) { 
    Occupation occ = person.GetOccupation();
    if (!personWithOccupation.ContainsKey(occ))
        personWithOccupation[acc] = new List<Person>();
    personsWithOccupation[occ].Add(person);
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...