Controprova :

VB.NET
codice:
		Private Sub BtnSalvaClick(sender As System.Object, e As System.EventArgs)
			With Me
				.Text = "Ciao" 
			End With
			With textBox1
				.text = "Ciao"
			End With
		End Sub
C#

codice:
		private void BtnSalvaClick(object sender, System.EventArgs e)
		{
			this.Text = "Ciao";
			textBox1.text = "Ciao";
		}