使用泛型中的谓词需要帮助

发布于 2024-11-11 20:56:22 字数 695 浏览 1 评论 0原文

目前,我使用一种方法,该方法根据从提供的密钥获取的字符串比较返回 ICommand 对象。

public ICommand getCommand(string mCommand)
        {
            foreach (object obj in objCommandList)
            {
                ICommand command = (ICommand)obj;
                if (command.m_strCommandName == mCommand)
                {
                    return command;
                }
            }
        return null;

        }

其中 objCommandList 包含 ICommand 对象。

现在我想改进我的代码,或者尝试使用替代方法在集合中进行搜索,即使用诸如 Predicate 委托之类的选项来检索过滤的对象收藏之中。

IE。

objCommandList.Find(Predicate syntax which is needed here...)

谁能帮我解决这个问题。

Presently i use a method which returns me the ICommand object based on the string comparisons got from the supplied key.

public ICommand getCommand(string mCommand)
        {
            foreach (object obj in objCommandList)
            {
                ICommand command = (ICommand)obj;
                if (command.m_strCommandName == mCommand)
                {
                    return command;
                }
            }
        return null;

        }

where objCommandList contains ICommand objects.

Now I want to improve my code or rather try an alternative to search amongst the collection i.e using an option such as Predicate delegate in retrieving the filtered object amongst the collection.

ie.

objCommandList.Find(Predicate syntax which is needed here...)

Can anyone help me with this.

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

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

发布评论

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

评论(1

撩人痒 2024-11-18 20:56:22

你可以尝试这样的事情:

objCommandList.Find(delegate(Icommand command) { return command.m_strCommandName == mCommand; });

或者

objCommandList.Find(c => c.m_strCommandName == mCommand);

You might try something like this:

objCommandList.Find(delegate(Icommand command) { return command.m_strCommandName == mCommand; });

or

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