简体   繁体   中英

Is there a way to shorten this code: (Add key to dictionary if key doesn't exist)?

if (dict.ContainsKey(key))
{
     dict[key] = value;
}
else
{
     dict.Add(key, value);
}

This is kind of verbose and I'm wondering if there is a magical function out there that can reduce this to 1 or 2 lines of code. Please teach me magic.

This is already the behaviour of the dictionary's index operator:

dict[key] = value;

Is all you need.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM