Ok, i have a custom dialog and a custom property inside it. This property simply writes or returns a richTextBox's .Text property.

Now i want to modify how += is used on that property. If someone uses
Code:
MyDialog.MyText += "Text"
i want the text to simply be added in my dialog as
Code:
this.richTextBox.Text += value +"\n"+ this.richTextBox.Text;

Now i am so friggin rusty as i havent been coding in a while, i forgot even what doing that is called. Something like Overriding the Modifier but without knowledge of exactly what it is called google does me no good as it does not search none Alhpa-Numeric Characters.


So any help would be much appreciated! And note that this += operator modification should only apply to that specific property.. so, any help?