一个泛型方法参数问题

发布于 2022-09-07 08:44:48 字数 190 浏览 33 评论 0

public static string GetTreeJsonByList<T>(List<T> list, Func<T, bool> filter, string pn, string In)
{
    //这个泛型方法在调用的时候,怎样传参才不会报错啊,我怎么写都不对,还望大佬指教
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谎言月老 2022-09-14 08:44:48

给你写了一个.NET Core 2的调用示例,供参考:

using System;
using System.Collections.Generic;

namespace GenericMethodDemo {
    class Program {
        static void Main (string[] args) {
            var trees = new List<Tree> { };

            //以下为调用GetTreeJsonByList方法的2个示例

            // 1.filter参数为null
            var result1 = GetTreeJsonByList (trees, null, "pn", "In");
            Console.WriteLine ($"result 1:{result1}");

            // 2.filter参数不为null
            var result2 = GetTreeJsonByList (trees, x => x.Id > 100, "pn", "In");
            Console.WriteLine ($"result 2:{result2}");

            Console.ReadKey ();
        }

        public static string GetTreeJsonByList<T> (List<T> list, Func<T, bool> filter, string pn, string In) {
            //这个泛型方法在调用的时候,怎样传参才不会报错啊,我怎么写都不对,还望大佬指教
            return "output";
        }
    }

    public class Tree {
        public int Id { get; set; }
        public string Name { get; set; }
        public int Sort { get; set; }
    }
}

注:以上调用示例中的泛型T即为:Tree这个实体对象。

如果还有.NET开发的相关问题,可以去: 专注.NET开发的编程爱好者社区--图享网 寻找答案。在.NET的开发中,帮助你找到疑难问题的更优美、更高级的解决方案

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文