C #: String como parâmetro para o evento?

Eu tenho um thread de GUI para o meu formulário e outro segmento que calcula as coisas.

O formulário tem um richtTextBox. Eu quero o thread de trabalho para passar seqüências de caracteres para o formulário, para que cada seqüência de caracteres seja exibida na caixa de texto.

Toda vez que uma nova string é gerada no thread de trabalho, eu chamo um evento, e isso agora deve exibir a string. Mas eu não sei como passar a corda! Isso é o que eu tentei até agora:

///// Form1
private void btn_myClass_Click(object sender, EventArgs e)
{
    myClass myObj = new myClass();
    myObj.NewListEntry += myObj_NewListEntry;
    Thread thrmyClass = new Thread(new ThreadStart(myObj.ThreadMethod));
    thrmyClass.Start();
}

private void myObj_NewListEntry(Object objSender, EventArgs e)
{
    this.BeginInvoke((MethodInvoker)delegate
    {
        // Here I want to add my string from the worker-thread to the textbox!
        richTextBox1.Text += "TEXT"; // I want: richTextBox1.Text += myStringFromWorkerThread;
    });
}
///// myClass (working thread...)
class myClass
{
    public event EventHandler NewListEntry;

    public void ThreadMethod()
    {
        DoSomething();
    }

    protected virtual void OnNewListEntry(EventArgs e)
    {
        EventHandler newListEntry = NewListEntry;
        if (newListEntry != null)
        {
            newListEntry(this, e);
        }
    }

    private void DoSomething()
    {
        ///// Do some things and generate strings, such as "test"...
        string test = "test";


        // Here I want to pass the "test"-string! But how to do that??
        OnNewListEntry(EventArgs.Empty); // I want: OnNewListEntry(test);
    }
}

questionAnswers(3)

yourAnswerToTheQuestion