c# – 如何实现Tuple.Create(T1 item1,T2 item2)?

前端之家收集整理的这篇文章主要介绍了c# – 如何实现Tuple.Create(T1 item1,T2 item2)?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试实现类似于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);
    }
}
原文链接:https://www.f2er.com/csharp/100969.html

猜你在找的C#相关文章