Yazı Font Küçült Yazı Font Büyült

string join

Bu makalemizde string join kullanımını göreceğiz. Aşağıdaki şekili inceleyiniz...Bahadirsa

Resim1

Şekil 1

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

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

        private void button1_Click(object sender, EventArgs e)
        {
           string r;
        string[] a = {"bahadirsa", "ali", "veli", "kirkdokuz", "elli"};

        r = string.Join(System.Environment.NewLine, a);
        MessageBox.Show(r);
        }
    }
}

//Bir sonraki makalede görüşmek üzere...Bahadirsa