将字符串列表连接成逗号分隔的字符串的简单方法,其中字符串是对象的成员?
假设我有一个 List(Of Tag),其中 Tag 是一个对象。 Tag 的一个成员 Tag.Description 是一个字符串,我想对 Description 成员进行逗号分隔的串联。
有没有比将描述成员读入 List(Of String) 然后使用 Join 函数更简单的方法?
谢谢!
Say I have a List(Of Tag) with Tag being an object. One member of Tag, Tag.Description, is a string, and I want to make a comma-separated concatenation of the Description members.
Is there an easier way to do this than to read the Description members into a List(Of String) and then use the Join function?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
抱歉,我刚刚又看了一遍,看到你正在使用 VS2005;所以也许最好的方法是创建一个 StringBuilder 并连接您的 tag.Description 。
Try this:
Sorry, I just read again and saw you're using VS2005; so maybe best way is to create a
StringBuilder
and concatenate yourtag.Description
.这是 Visual Studio 2005 解决方案
Here's a Visual Studio 2005 Solution