30 Mayıs 2020 Cumartesi

c# join metodu

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApp8
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            string[] diller;
            diller = new string[listBox1.Items.Count];
            byte i;
            for ( i = 0; i <= listBox1.Items.Count-1; i++)
            {
                diller[i] = listBox1.Items[i].ToString();
            }
            textBox1.Text = string.Join(",", diller);
        }
    }
}

join metodu listbox içerisindeki değerleri join metodu ile,karakterini kullanarak bir textbox içerisine aktarır..

Hiç yorum yok:

Yorum Gönder