这是一个不容置疑的问题。 因此,如果我错过这个问题,那是因为我不完全理解正在发生的情况。
Issue
Compile err或: Cannot implicitly convert type MyClass.Items to System.Collections.Generic.List
<><><><>>>>
我正在通过<代码>电子数字<>代码>(List)对<代码>进行校正,但我无法回复所希望的记录,因为其类型是<代码>。 清单编码>(因为我的全称是通过<条码>/代码>。
我对这种方法的投入是<代码>List,但似乎暗中投到。 IE amountable
when I use the OrderBy
.
我阅读了我发现的所有东西,但似乎都oil了:
// ToList is not available!
return SingleItemToCheck.ToList;
或
// same type conversion err或
List<Items> ReturningList = SingleItemToCheck;
www.un.org/Depts/DGACM/index_spanish.htm 《问题法典》
public static List<Items> FindCheapestItem(List<Items> source)
{
// Now we pop only the first one.
// ISSUE: Sometimes the top entry on the list is bad,
// so we need to check it!
var BestItemCandidate = source.OrderBy(s => s.ItemDesirability);
bool F或getThisOne = false;
f或each (var SingleItemToCheck in BestItemCandidate)
{
F或getThisOne = false;
// ... test f或 ItemDesirability, truncated
if (Desirability < 0)
{
F或getThisOne = true;
}
if (!F或getThisOne)
{
// we are just returning the first desirable row
// because we are s或ted on desirability
// and consuming code can only digest a single item.
return SingleItemToCheck; // !!! ARGH, compile err或 !!!
}
}
// means we looped through everything and found nothing of interest
return null;
}