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

VC#.Net te Array Uygulaması

Bu örneğimizde Array e değineceğiz. Formunuza 1 tane listbox nesnesi ekleyin.

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 Form1_Load(object sender, EventArgs e)
        {
            string[] str = new string[7];
            int i;
            this.Text = "Array & Dizi Kullanımı Örnek...Bahadirsa";
            this.Size = new System.Drawing.Size(207, 158);
            this.Location = new Point(250, 190);
            this.MaximizeBox = false;

            listBox1.Size = this.Size;

            str.SetValue("Ali", 0);
            str.SetValue("Veli", 1);
            str.SetValue("KırkDokuz", 2);
            str.SetValue("Elli", 3);
            str.SetValue("Merhaba", 4);
            str.SetValue("Dünya", 5);

            for (i = 0; i <= 5; i++)
            {
                listBox1.Items.Add(str.GetValue(i));
            }
           
               
          
        }
    }
}

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