vote up 2 vote down star
1

Here's a simplified version of what I'm trying to do:

var days = new KeyValuePair<int, string>();
days.Add(1, "Monday");
days.Add(2, "Tuesday");
...
days.Add(7, "Sunday");

var sampleText = "My favorite day of the week is 'xyz'";
var day = days.FirstOrDefault(x => sampleText.Contains(x.Value));

Since 'xyz' is not present in the KeyValuePair variable, the FirstOrDefault method will not return a valid value. I want to be able to check for this situation but I realize that I can't compare the result to "null" because KeyValuePair is a struc. The following code is invalid:

if (day == null) {
    System.Diagnotics.Debug.Write("Couldn't find day of week");
}

We you attempt to compile the code, Visual Studio throws the following error:

Operator '==' cannot be applied to operands of type 'System.Collections.Generic.KeyValuePair<int,string>' and '<null>'

How can I check that FirstOrDefault has returned a valid value?

flag

57% accept rate
1  
You have a bug there, but I assume it's a copy-paste thing: days isn't a list, and you cant use add on KeyValuePair. – Kobi Aug 26 at 16:46
ooops... you are correct I was typing from memory and I obviously made a mistake. Thanks for pointing it out. – desautelsj Aug 30 at 4:39

1 Answer

vote up 8 vote down check

FirstOrDefault doesn't return null, it returns default(T).
You should check for:

var defaultDay = default(KeyValuePair<int, string>);
bool b = day.Equals(defaultDay);

See also: http://msdn.microsoft.com/en-us/library/bb340482.aspx

link|flag
+1, KeyValuePair is a value type (struct), not a reference type (class) or a nullable value type, so it cannot be null. – Lucas Aug 26 at 17:06
thanks, it workds indeed! – desautelsj Aug 26 at 19:18
missing typeof operator, but still +1 for good stuff – paper1337 Sep 30 at 20:51
@paper1337 - Thanks, but where am I missing typeof? This code compiles and works. – Kobi Oct 1 at 5:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.