Cannot Assign \"AppendText\" because it is a \"method group\".
public partial class Form1 : Form { String text = \"\"; public Form1() {
Do this instead (AppendText is a method, not a property; which is exactly what the error message is telling you):
textBox2.AppendText(text);