Hello All,
I have a List with bool values and would like to see the whole content in a lable.
How can I pack them together?
private List
public List
{
get { return ioStatus; }
set { ioStatus = value; }
}
lable1.Text = ALL IOStatus???
thank you

Ravi ShekharPosted Aug 14, 2013, 12:20 AM
ilhami caliskanPosted Aug 13, 2013, 1:22 PM
VulpesPosted Aug 13, 2013, 12:54 PM
label1.Text = String.Join("\r\n", IoStatus);