コード例 #1
0
ファイル: ConsoleValue.cs プロジェクト: alesliehughes/olive
		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
ファイル: ConsoleWriter.cs プロジェクト: alesliehughes/olive
		public void AddChild(Object o)
		{
			this.text = new ConsoleValueAppend(this.text, (ConsoleValue)o);
		}
コード例 #7
0
ファイル: ConsoleWriter.cs プロジェクト: alesliehughes/olive
		public void AddText(string text)
		{
			this.text = new ConsoleValueAppend(this.text, new ConsoleValueString(text));
		}
コード例 #8
0
ファイル: ConsoleWriter.cs プロジェクト: alesliehughes/olive
		public ConsoleWriter(ConsoleValue text)
		{
			this.text = text;
		}
コード例 #9
0
ファイル: ConsoleWriter.cs プロジェクト: alesliehughes/olive
		public ConsoleWriter()
		{
			text = new ConsoleValueString("");
		}
コード例 #10
0
ファイル: ConsoleValue.cs プロジェクト: stanasse/olive
 public ConsoleValueAppend(ConsoleValue a, ConsoleValue b)
 {
     this.a = a;
     this.b = b;
 }