nn va
codice:
			//
			//La funzione che riempie il Text di txtRis con l'operazione di somma
			//
	private void button_Click(object sender, System.EventArgs e)
			{
			Doppi maz = new Doppi();// oggetto esterno			
			Object prim = (Object)txtPrimo.Text;// da string a obj
			Object second = (Object)txtSecondo.Text;// da string a obj
			int primo = (int)prim;// da obj a int
			int secondo = (int)second;// da obj a int
			maz.somma(primo, secondo);
			Object res = (Object)maz.ris;// da obj a obj
			string result = res.ToString();	// da obj a string
			txtRis.Text = result;			
			}