开发者

I need a LINQ query that formats my XML data as CSV data [closed]

开发者 https://www.devze.com 2023-03-20 00:41 出处:网络
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form. For help clari
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 11 years ago.

The xml is the below format :

<categories>
  <category>Find product</category>
  <category>Shopping</category>
</categories>开发者_如何学C

I need a LINQ query ( lambda expression) that returns the results in the following format :

categories = Find product,Shopping


That sounds like:

var categories = doc.Descendants("category") // Find "category" elements
                    .Select(x => (string) x); // Select the string value

// In .NET 4
string joined = string.Join(",", categories);

// In .NET 3.5 (fewer overloads for Join)
string joined = string.Join(",", categories.ToArray());
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号