I have this code:

I cannot figure out why "aaa" is not printed. Why is that?
No errors, all compiles fine.
Thanks!
Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using WindowsFormsApplication1;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void buttonClicked(object sender, EventArgs e)
{
Print PrintIT = new Print();
PrintIT.PrintTo();
}
}
}
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using WindowsFormsApplication1;
namespace WindowsFormsApplication1
{
class Print : Form1
{
public void PrintTo()
{
richTextBox1.Text += "aaa";
}
}
}

I cannot figure out why "aaa" is not printed. Why is that?
No errors, all compiles fine.
Thanks!
Comment