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