Şekil 1
Form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
string sayi = "12345678";
string ekle;
//sayinin 4.karakterinden sonra araya bilgi giriyoruz.
ekle = sayi.Insert(4, " Bahadır ŞAHİN ");
// dönen değer: 1234 Bahadır ŞAHİN 5678
//
//Remove Örnek
string sil;
//12345678 in 4. parametresinden sonra başlar ve 4 karakter
//silinir.
sil = sayi.Remove(4, sayi.Length - 4);
MessageBox.Show("Insert Örnek: " + ekle + Environment.NewLine + "Remove Örnek: " + sil);
}
}
}
Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek üzere. Hoşçakalın. Bahadır ŞAHİN
0 comments:
Yorum Gönder