[Solved] c# How to show the total of values in a column in a listview? [closed]
Hi Mario to get your values in 1 column try this…i used a simple list this will put values in first column List<string> lst = new List<string>(); lst.AddRange(new string[]{“one”,”two”,”three”,”four”}); foreach(var value in lst) { listView1.Items.Add(value); } if you want to put it in any other column try this List<string> lst = new List<string>(); lst.AddRange(new string[] … Read more