list.findall 可以引用变量吗?
例如:
mylist.FindAll(Function(item) item.property = variable)
我问的原因是,如果我使用这样的语法,我倾向于将字符串转换为任何转换错误,这让我认为“变量”实际上被视为字符串。
谢谢。
Such as:
mylist.FindAll(Function(item) item.property = variable)
The reason I ask is if I use syntax like this, I tend to get a string to whatevever conversion error, which makes me think "variable" is being treated literally as a string.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用匿名函数:
You can use anonymous function: