I want to save a FileInfo object to my list view items.

Code:
class ListViewItemEx : ListViewItem
    {
        private FileInfo _info;
        public FileInfo Info
        {
            get { return _info; }
            set { _info = value; }
        }

        public ListViewItemEx(FileInfo fi)
        {
            _info = fi;
        }
     }
The list view is in details view. The items are added but the item text is not displayed. What to I have to do to get the list view to show the FileInfo::Name property.

Any suggestions?

Mike B