c# dictionary safe add

来源:互联网 发布:编程网页怎么加入图片 编辑:程序博客网 时间:2024/06/08 18:49
public static class DictionaryExtensions{    public static void SafeAdd<TKey, TValue>(this Dictionary<TKey, TValue> dict,                                              TKey key, TValue value)    {        dict[key] = value;    }}
原创粉丝点击