15 Mayıs 2015 Cuma
C# İki Değer Arasındaki Sayıları Listbox'a Ekleme
Kodlar;
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 WindowsFormsApplication8
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
double a, b,i;
a=double.Parse(textBox1.Text);
b=double.Parse(textBox2.Text);
for (i = a; i <= b; i++)
{
listBox1.Items.Add(i);
}
}
}
}