string acom = AcompList.CheckedItems.ToString();
Label1.Text = (Pratotxt.Text + "\n" + Tamanhotxt.Text + "\n" + Obstxt.Text + "\n" + acom + "\n" + Mesatxt.Text + "\n" + Enderecotxt.Text);
but it's showing this text on the label: System.Windows.Forms.CheckedListBox+CheckedItemCollection
i used
AcompList.CheckedItems.ToString();
\\doesnt work
string acom = AcompList.GetSelected;
\\ idk why i even used this one
string acom = AcompList.Items.Cast<string>;
\\ gives CS0428 error
Like Ňɏssa Pøngjǣrdenlarp
CheckedItemsitems is a collection of items. You should looping the list of items like this