当前位置 : 主页 > 编程语言 > c语言 >

c# dictionary 给某键值赋值之前是否一定要add此键值

来源:互联网 收集:自由互联 发布时间:2023-09-03
c# dictionary 给某键值赋值之前是否一定要add此键值? DictionarykeyType, valueType dict = new ....;void SetKeyValue(key, value){ if (!dict.Contain(key)) dict.Add(key, value); else dict[key] = value;}


c# dictionary 给某键值赋值之前是否一定要add此键值?



Dictionary<keyType, valueType> dict = new ....;

void SetKeyValue(key, value)
{
    if (!dict.Contain(key))
        dict.Add(key, value);
    else
        dict[key] = value;
}


上一篇:if (arry.Contains(str))
下一篇:没有了
网友评论