Replies: 2 comments
-
I think you are going to have trouble with that structure. What would the csv look like if the next team in your list is? var data = new List();
data.Add("John");
data.Add("James");
data.Add("Egorova");
var namesColumn = new List<string>();
namesColumn.Add("FirstName");
namesColumn.Add("MiddleName");
namesColumn.Add("LastName");
var team = new Team();
team.Data = data;
team.NameColumnData = NameColumn; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Output file csv:
Beta Was this translation helpful? Give feedback.
All reactions