Value = 10Example one: List = {1,4,6,8}; => number 8 biggest on List and smaller than 10Example two: List = {1,15,17,20}; => number 1 biggest on List and smaller than 10
我正在尝试使用linq但到目前为止没有成功.
解决方法 您可以使用Where子句限制用于获取“Max”的值:return myList.Where(x => x < 10).Max();总结
以上是内存溢出为你收集整理的c# – 列表中小于X的最大值全部内容,希望文章能够帮你解决c# – 列表中小于X的最大值所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)