In VB.NET to pass something from one form to another I would do
vb.net Code:
  1. 'on Form1
  2. Form2.TextBox1.Text = TextBox1.Text
How would I do the same thing in C#?