Today I discovered something that makes me sad: objects of type System.Generic.Collections.List don't have a number of the useful extension methods I've come to love, such as Find, FindAll, FindIndex, Exists, RemoveAll, etc.
The object browser in VS2008 shows that those methods exist in the mscorlib version I'm using, but if I look at the assembly in ildasm they're not there.
Am I missing something obvious here or is there some way to make them available to my Silverlight app?
Also, I wonder if there's a good reference out there for what's different between Silverlight's runtime and the "real" one.
Thanks!