private void btnDescif_Click(object sender, EventArgs e) { richTextBoxCifrado.Text = CifradoCesar.Descifrado(textBox.Text, (int)numericUpDown1.Value); }
public Form1() { InitializeComponent(); cifrado = new CifradoCesar(new EspanolLatino()); }