If one loops through an XmlNodeList like this
foreach (XmlNode foo in xmlNodeList) {string baa = foo.Attributes["baa"].Value;}
everything works as expected - foo is clearly of type XmlNode and the VS.NET IDE shows methods and fields.
On the other hand
foreach (var foo in xmlNodeList) { string baa = foo.Attributes["baa"].Value; }
is not compiling because here foo is of type object. Type inference sort of works but infers object.
Apparently, the elements of XmlNodeList are not of one defined type, but assigning them to XmlNode instead of var does something implicitly (casting or unboxing).
First question: what's the mechanism behind that?
Second (related) question: how to find the types one can use in this kind of loop? Does the VS.NET IDE help?