You can use the Text property for ListItem:
string itemText = ListBox1.Items[0].Text;
Update:
If you are in WinForms, the linked list will return a DataRowView:
DataRowView drv = (DataRowView)ListBox1.Items[0];
string itemText = drv.Row["MyColumn"].ToString();
source
share