I'm trying to get the value of each selected item in a list view. Problem is that when I use Intellitext to find out what I can get out of "Item", my options are:
Equals
GetHashCode
GetType
ToString
When I use ToString, I get the following:
{Text = "ItemLabel"}
When all I want is:
ItemLabel
foreach(var Item in ListView.SelectedItems)
{
Item.ToString(); //{Text = "ItemLabel"}
}
How can I make it so that I can get the text that I want (without parsing the results from ToString).