I am writing the following code in C# to show data in multiple columns in a listView but it only shows the first element of the array,
ListViewItem item = new ListViewItem(new []{txtTitle.Text,txtRatings.Value.ToString(),cmbGenre.Text});
lstMovie.Items.Add(item);
the output in the list view is just the first element. How do I get all three elements.