Example #1
0
        public static StringVariable operator +(StringVariable b, StringVariable c)
        {
            StringVariable a = new StringVariable();

            a.text = b.text + c.text;
            return(a);
        }
Example #2
0
 public void AddText(StringVariable text)
 {
     this.text += text;
 }
Example #3
0
 public void SetText(StringVariable text)
 {
     this.text = text.text;
 }