喵喵时光机
泛型方法 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");