DoUNo: ListViewItems in C#
When you create a ListViewItem in C#, it automatically creates a ListViewSubItem for it and the ListViewItem.SubItem[0] is the ListViewItem.
i.e, the default value of ListViewItem is the value of ListViewItem at SubItems[0]
You can find more about ListViewItems in http://codelog.blogial.com/2008/07/18/using-listview-control/
Refer to http://stackoverflow.com/questions/502782/automatic-creation-of-listviewsubitems to know my experiences with the ListViewControl.

