| http://www.w3.org/ns/prov#value | - day, June 09, 2012 10:35:00 AMIn most cases anonymous types are better to use since you can name your arguments, like this:var anonType = new { First = Jalpesh, Middle = P, Last = Vadgama };Console.WriteLine(anonType);However in some cases, like together with the extension method IEnumerable.Zip you get a very compact syntax using Tuple:var stringArray = new[] { one, two, three };var i
|