Mostrando entradas con la etiqueta Estructura selectiva multiple. Mostrar todas las entradas
Mostrando entradas con la etiqueta Estructura selectiva multiple. Mostrar todas las entradas

Numero a Letra







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 numero4
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

//Variables

int numero;
string letra = "";

//Entrada

private void textBox1_TextChanged(object sender, EventArgs e)
{
numero = int.Parse(textBox1.Text);
}

//Proceso

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