The default for KeyValuePair

后端 未结 7 635
悲哀的现实
悲哀的现实 2020-12-04 10:01

I have an object of the type IEnumerable> keyValueList, I am using

 var getResult= keyValueList.SingleOrDefault()         


        
相关标签:
7条回答
  • 2020-12-04 10:34

    I recommend more understanding way using extension method:

    public static class KeyValuePairExtensions
    {
        public static bool IsNull<T, TU>(this KeyValuePair<T, TU> pair)
        {
            return pair.Equals(new KeyValuePair<T, TU>());
        }
    }
    

    And then just use:

    var countries = new Dictionary<string, string>
    {
        {"cz", "prague"},
        {"de", "berlin"}
    };
    
    var country = countries.FirstOrDefault(x => x.Key == "en");
    
    if(country.IsNull()){
    
    }
    
    0 讨论(0)
  • 2020-12-04 10:35

    Try this:

    KeyValuePair<string,int> current = this.recent.SingleOrDefault(r => r.Key.Equals(dialog.FileName) == true);
    
    if (current.Key == null)
        this.recent.Add(new KeyValuePair<string,int>(dialog.FileName,0));
    
    0 讨论(0)
  • 2020-12-04 10:38

    Try this:

    if (getResult.Equals(new KeyValuePair<T,U>()))
    

    or this:

    if (getResult.Equals(default(KeyValuePair<T,U>)))
    
    0 讨论(0)
  • 2020-12-04 10:48

    From your original code it looks like what you want is to check if the list was empty:

    var getResult= keyValueList.SingleOrDefault();
    if (keyValueList.Count == 0)
    {
       /* default */
    }
    else
    {
    }
    
    0 讨论(0)
  • 2020-12-04 10:49

    You can create a general (and generic) extension method, like this one:

    public static class Extensions
    {
        public static bool IsDefault<T>(this T value) where T : struct
        {
            bool isDefault = value.Equals(default(T));
    
            return isDefault;
        }
    }
    

    Usage:

    // We have to set explicit default value '0' to avoid build error:
    // Use of unassigned local variable 'intValue'
    int intValue = 0;
    long longValue = 12;
    KeyValuePair<String, int> kvp1 = new KeyValuePair<String, int>("string", 11);
    KeyValuePair<String, int> kvp2 = new KeyValuePair<String, int>();
    List<KeyValuePair<String, int>> kvps = new List<KeyValuePair<String, int>> { kvp1, kvp2 };
    KeyValuePair<String, int> kvp3 = kvps.FirstOrDefault(kvp => kvp.Value == 11);
    KeyValuePair<String, int> kvp4 = kvps.FirstOrDefault(kvp => kvp.Value == 15);
    
    Console.WriteLine(intValue.IsDefault()); // results 'True'
    Console.WriteLine(longValue.IsDefault()); // results 'False'
    Console.WriteLine(kvp1.IsDefault()); // results 'False'
    Console.WriteLine(kvp2.IsDefault()); // results 'True'
    Console.WriteLine(kvp3.IsDefault()); // results 'False'
    Console.WriteLine(kvp4.IsDefault()); // results 'True'
    
    0 讨论(0)
  • 2020-12-04 10:50
    if(getResult.Key.Equals(default(T)) && getResult.Value.Equals(default(U)))
    
    0 讨论(0)
提交回复
热议问题