I am new in c # and I'm trying to save some data read from an XML parser. The data is read correctly, in fact I mold them as follows:
liveMatches.ForEach(match => Console.WriteLine(
match.Id.ToString(),
match.Name,
match.Country,
match.Historical_Data,
match.Fixtures,
match.Livescore,
match.NumberOfMatches,
match.LatestMatchResult
));
but now I want to create an array having eight cells, these cells will be inserted in its content that is shown on the console for each match. Who can tell me how to do?