↧
Answer by Jeff Mercado for Grouping XElement when generating XML from CSV
Assuming the first line of the file is always the name, read that line out first, then process the rest as CSV. After reading the rows in, group them by the appropriate column and build out the...
View ArticleGrouping XElement when generating XML from CSV
Say I have a *.csv that is generated by 3rd party and cannot be changed.ProjectName Fruit, Apple Fruit, OrangeAnimal, DogAnimal, CatUsing the tutorial described in Generate XML from CSV Files, I have...
View Article