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<Boolean> ioStatus = new List<Boolean>(); public List<Boolean> IoStatus { get { return ioStatus; } set { ioStatus = value; } }
lable1.Text = ALL IOStatus???
thank you