使用泛型中的谓词需要帮助
目前,我使用一种方法,该方法根据从提供的密钥获取的字符串比较返回 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以尝试这样的事情:
或者
You might try something like this:
or