我正在尝试实现类似于Tuple< T1,T2> .Create< T1,T2>(T1 item1,T2 item2)的方法,但我仍然必须指定类型参数,而Tuple.Create则推断它们.
我认为这个定义是正确的.我究竟做错了什么?这是我的代码:
public class KeyValuePair<K,V> { public K Key { get; set; } public V Value { get; set; } public static KeyValuePair<K,V> Create<K,V>(K key,V value) { return new KeyValuePair<K,V> { Key = key,Value = value }; } }
解决方法
您将要创建该类的非泛型版本.
public class KeyValuePair { public static KeyValuePair<K,V>(key,value); } }