键值对不区分大小写保存

parent 56a8db93
...@@ -54,7 +54,7 @@ public static void AddOrUpdate(this Dictionary<string, object> keyValues, string ...@@ -54,7 +54,7 @@ public static void AddOrUpdate(this Dictionary<string, object> keyValues, string
if (default(KeyValuePair<string, object>).Equals(pair)) if (default(KeyValuePair<string, object>).Equals(pair))
keyValues.Add(key, value); keyValues.Add(key, value);
else else
keyValues[key] = value; keyValues[pair.Key] = value;
} }
/// <summary> /// <summary>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment