Aunque es algo sencillo. Ahi lo tienes: Se entiende verdad ¿?
Agregar al formulario 1 textbox y un boton. en el evento click del boton agregar lo siguiente:
Citar
string num; string aux; aux = ""; Boolean bol; bol = false; num = this.textBox1.Text; for (int i = 0; i < num.Length; i++) { aux = num.Substring(i, 1) + aux; } if (aux == num) { bol = true; } MessageBox.Show("EL numero es capicua: " + bol);