泛型方法
public Dictionary<TKey, TValue> get<TKey, TValue>(TKey key, TValue value) { Dictionary<TKey, TValue> dic = new Dictionary<TKey, TValue>(); dic[key] = value; return dic; } //调用 get(1, "1"); get("1", "1");
能重新看一下问题吗?摆脱。。描述错了。
要是个人的话,就直接都返回dictionary<string,string> 就行了啊
2楼正解
学习了
2楼正解 利用泛型
利用泛型啦,2楼的正解