加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

c# – 关于列表排序和委托&lambda表达式Func的东西

发布时间:2020-12-15 04:17:47 所属栏目:百科 来源:网络整理
导读:Listbool test = new Listbool();test.Sort(new Funcbool,bool,int((b1,b2) = 1)); 我错过了什么? Error 2 Argument 1: cannot convert from ‘System.Func’ to ‘System.Collections.Generic.IComparer’ Error 1 The best overloaded method match for
List<bool> test = new List<bool>();
test.Sort(new Func<bool,bool,int>((b1,b2) => 1));

我错过了什么?

Error 2 Argument 1: cannot convert from ‘System.Func’ to ‘System.Collections.Generic.IComparer’

Error 1 The best overloaded method match for ‘System.Collections.Generic.List.Sort(System.Collections.Generic.IComparer)’ has some invalid arguments

当我有

private int func(bool b1,bool b2)
{
    return 1;
}

private void something()
{
    List<bool> test = new List<bool>();
    test.Sort(func);
}

它工作正常.他们不是一回事吗?

解决方法

Func是错误的委托类型.您可以使用以下任一方法:
test.Sort((b1,b2) => 1);
test.Sort(new Comparison<bool>((b1,b2) => 1));

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读