如何在字典中添加重复键

如何在字典中添加重复键

You can check if the key exists with previousLines.ContainsKey(dialedno) but if you always want to hold the last line, then just replace whatever dictionary had for the key, or add the new key if it is not in the dictionary:previousLines[dialedno] = line; 这篇关于如何在字典中添加重复键的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-01 08:09