jueves, 31 de mayo de 2012

Mostrar una variable en un TextBox C#


Para mostrar una variable de un tipo diferente al tipo cadena (string) en un TextBox
Existen varias formas las cuales son explicadas enseguida

//variable de tipo entero llamada numero
int numero = 123;
            //opción 1----------------------------------
            //aquí asignamos al textbox el resultado de
            //convertir a string la variable numero
            textBox1.Text = Convert.ToString(numero);
            //opción 2--------------------------------------
            //aquí va primero la variable con la terminación
            //de la conversión a string
            textBox1.Text = numero.ToString();
            //-----opción 3----------------------------------------
            //algo más tardado sería declarar primero una
            //variable string y convertir la variable de tipo entero
            string mensaje = Convert.ToString(numero);
            //enseguida se muestra en el textbox esta variable
            textBox1.Text = mensaje;

Enseguida se usará una de las opciones anteriores:

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

        private void button1_Click(object sender, EventArgs e)
        {
            int numero = 123;
            textBox1.Text = numero.ToString();
        }
    }
}



2 comentarios: