List.Sort方法调用中的语法错误

时间:2016-07-27 06:20:01

标签: c#

我在此行中收到错误“语法错误'=>'预期“

ListOfPossiblePlates.Sort((OnePlate ,OtherPlate) OtherPlate.strChars.Length.CompareTo(OnePlate.strChars.Length));

请告诉我解决方案

1 个答案:

答案 0 :(得分:0)

你应该这样写;

ListOfPossiblePlates.Sort((OnePlate ,OtherPlate) => OtherPlate.strChars.Length.CompareTo(OnePlate.strChars.Length));