I’m testing for the existence of a user record in the following statement:
if (fromUser.AllFriends.Where(af => af.FriendUserID == toUserID).SingleOrDefault() == ???
Given the documentation:
Returns a single, specific element of a sequence, or a default value if that element is not found.
What does the bold text refer to? What the heck am I testing for in my if statement?
A serious question that probably sounds simple and ridiculous to most.
Thanks.
Excerpts from ECMA bible, verse 334 :
12.2 Default values
The default value of a variable depends on the type of the variable and is determined as follows:
null.[Note: Initialization to default values is typically done by having the memory manager or garbage collector
initialize memory to all-bits-zero before it is allocated for use. For this reason, it is convenient to use all-bitszero
to represent the null reference. end note]
The default value of a nullable type is an instance for which the
HasValueproperty isfalse. Referencing theValue property of a default value of a nullable type results in an exception of type
System.InvalidOperationException. The default value is also known as the null value of thenullable type. An implicit conversion exists from the null type (§11.2.7) to any nullable type, and this
conversion produces the null value of the type.
18.3.4 Default values
As described in §12.2, several kinds of variables are automatically initialized to their default value when
they are created. For variables of class types and other reference types, this default value is null. However,
since structs are value types that cannot be null, the default value of a struct is the value produced by
setting all value type fields to their default value and all reference type fields to null.
The default value of a struct corresponds to the value returned by the default constructor of the struct
(§11.1.1). Unlike a class, a struct is not permitted to declare a parameterless instance constructor. Instead, every struct implicitly has a parameterless instance constructor, which always returns the value that results
from setting all value type fields to their default value and all reference type fields to null.
11.1.2 Default constructors
All value types implicitly declare a public parameterless instance constructor called the default constructor.
The default constructor returns a zero-initialized instance known as the default value for the value type:
0.'\x0000'.0.0f.0.0d.0m.false.0.null.HasValuereturnsfalse.Amen
You could download the holy book (version 4.0) directly from microsoft website.