Cuenta caracteres de un texto





using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace numero7
                 {
                 public partial class Form1 : Form
            {
              public Form1()
           {
           InitializeComponent();
            }

                    //Variables
                   string texto;
                   int cantidad;

                  //Entrada
                  private void textBox1_TextChanged(object sender, EventArgs e)
          {
            texto = entrada.Text;
           }


                  //Proceso y salida
                  private void button1_Click(object sender, EventArgs e)
              {
               cantidad = texto.Length;
               salida.Text = cantidad.ToString();
              }

                 private void button2_Click(object sender, EventArgs e)
              {
              Application.Exit();
               }
}
}



No hay comentarios:

Publicar un comentario

Nota: solo los miembros de este blog pueden publicar comentarios.