ListBox ta Tekrarlanan Satır Sayısını Öğrenme
Merhaba arkadaşlar, bu makalemizde Listboxta tekrarlanan satır sayısını öğreneceğiz.
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();
}
int sayi;
private void Form1_Load(object sender, EventArgs e)
{
listBox1.Items.Add(4);
listBox1.Items.Add(4);
listBox1.Items.Add(4);
listBox1.Items.Add("Bahadır");
listBox1.Items.Add("Bahadır");
listBox1.Items.Add("Bahadır");
listBox1.Items.Add("Ahmet");
for (int i = 0; i < listBox1.Items.Count; i++)
{
// if (listBox1.Items[i] == "Bahadır") veya
if( string.Compare(listBox1.Items[i].ToString(),"Bahadır")==0)
{
sayi = sayi + 1;
}
}
MessageBox.Show(sayi.ToString());
}
}
}
Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek dileğiyle. Hoşçakalın. Bahadır ŞAHİN