Base:
3 references to ToString
System.Windows.Forms (2)
System\Windows\Forms\Controls\ListView\ListView.cs (2)
5565string z = _listViewItems[0].ToString(); 5575string z = (Items[0] is null) ? "null" : Items[0].ToString();
System.Windows.Forms.Tests (1)
System\Windows\Forms\ListViewTests.cs (1)
5295Action action = () => listView.Items[1].ToString();