Esempio n. 1
0
		public ConsoleValueAppend(ConsoleValue a, ConsoleValue b)
		{
			this.a = a;
			this.b = b;
		}
Esempio n. 2
0
 public void AddText(string text)
 {
     this.text = new ConsoleValueAppend(this.text, new ConsoleValueString(text));
 }
Esempio n. 3
0
 public void AddChild(Object o)
 {
     this.text = new ConsoleValueAppend(this.text, (ConsoleValue)o);
 }
Esempio n. 4
0
 public ConsoleWriter()
 {
     text = new ConsoleValueString("");
 }
Esempio n. 5
0
 public ConsoleWriter(ConsoleValue text)
 {
     this.text = text;
 }
Esempio n. 6
0
		public void AddChild(Object o)
		{
			this.text = new ConsoleValueAppend(this.text, (ConsoleValue)o);
		}
Esempio n. 7
0
		public void AddText(string text)
		{
			this.text = new ConsoleValueAppend(this.text, new ConsoleValueString(text));
		}
Esempio n. 8
0
		public ConsoleWriter(ConsoleValue text)
		{
			this.text = text;
		}
Esempio n. 9
0
		public ConsoleWriter()
		{
			text = new ConsoleValueString("");
		}
Esempio n. 10
0
 public ConsoleValueAppend(ConsoleValue a, ConsoleValue b)
 {
     this.a = a;
     this.b = b;
 }