17 Mart 2015 Salı

Textbox'a Girilen değeri tersten yazma



Örneğin 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 array_sort__array_revers_
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            string str = "";
            str = textBox1.Text.ToString();
            char[] harfler = new char[str.Length];
            for (int i = 0; i < str.Length; i++)
            {
         
            harfler[i]=str[i];
            }
           // Array.Sort(harfler);//dizi elemanlarını alfabetik sırala
            Array.Reverse(harfler);
            foreach (char harf in harfler)
            {
                listBox1.Items.Add(harf);
            }
                              // Erdoğan GENÇTÜRK.
        }
    }
}

Hiç yorum yok: