Not sure why it happened but noticed several times on Enumerable.OrderBy<> and I've manager to reproduce.
Maybe it's missing because it's marked as Compiler Generated code!?
Sample Code (full example will send you via email):
public
Bug(ListItemPointData pointData)
:
this
()
{
this
.Loops =
new
List<ListItem>(pointData.Loops);
Enumerable.OrderBy<ListItem, DateTime>(
this
.Loops,
delegate
(ListItem point) {
return
point.OrderField; }
);
}
Generated code (you can notice Enumerable.OrderBy<...>(...) is missing in any form:
public
Bug(BugEnumerationOrderByNotDecompiled.ListItemPointData pointData) :
this
()
{
this
.Loops =
new
List<BugEnumerationOrderByNotDecompiled.ListItem>(pointData.Loops);
}