I'm trying to fill a listview with the code shown bellow, but when the listview is populated, each item is shown as:
ListViewItem: {The information to display1}
ListViewItem: {The information to display2}
ListViewItem: {The information to display3}
ListViewItem: {The information to display4}
My question is, how can I display only what is inside braces?
Here is my code:
ListViewItem lvi = new ListViewItem();
lvi.Text = tang2.Name;
lvi.SubItems.Add(tang2.Name.ToString());
lsvUsedAnalysis.Items.Add(lvi);
My thanks in advanced