如何一次性删除通用列表中的所有空元素?
.Net 中是否有为 C# 定义的默认方法来删除列表中所有 null
元素?
List<EmailParameterClass> parameterList = new List<EmailParameterClass>{param1, param2, param3...};
假设某些参数为 null
;我无法提前知道,我想将它们从我的列表中删除,以便它只包含不为空的参数。
Is there a default method defined in .Net for C# to remove all the elements within a list which are null
?
List<EmailParameterClass> parameterList = new List<EmailParameterClass>{param1, param2, param3...};
Let's say some of the parameters are null
; I cannot know in advance and I want to remove them from my list so that it only contains parameters which are not null.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
您可能需要以下内容。
You'll probably want the following.
我不知道任何内置方法,但你可以使用 linq:
I do not know of any in-built method, but you could just use linq:
RemoveAll 方法应该可以解决问题:
The RemoveAll method should do the trick:
方法
OfType()
将跳过空值:The method
OfType()
will skip the null values:还有另一个简单而优雅的选项:
这将删除所有不属于
EmailParameterClass
类型的元素,这显然会过滤掉任何null
类型的元素。这是一个测试:
There is another simple and elegant option:
This will remove all elements that are not of type
EmailParameterClass
which will obviously filter out any elements of typenull
.Here's a test:
简单且无需 LINQ:
Easy and without LINQ: