کد HTML:
            int count=(listBox1.Items.Count)-1;
            string[] str = new string[count];
            for (int i = 0; i < count; i++)
            {
                str[i] = listBox1.SelectedItems.ToString();
            }
کد HTML:
           int count=(listBox1.Items.Count)-1;
            string[] str = new string[count];
            for (int i = 0; i < count; i++)
            {
                listBox1.Items.CopyTo(str, count);
            }
خوب اینم کداش حالا میشه کمک کنید؟