You still just add a ListViewItem, but the ListViewItem has SubItems. In this code I create an item with an image index of 0 and then add a sub item to it. The sub item shows up in the second column.
Code:
private void DisplayLoadedAssemblies()
{
Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies();
foreach (Assembly a in assemblies)
{
AssemblyName an = a.GetName();
ListViewItem item = new ListViewItem(an.Name.ToString(), 0);
item.SubItems.Add(an.Version.ToString());
this.lvAssemblies.Items.Add(item);
Debug.WriteLine(a.ToString());
}
}
Mike