コード例 #1
0
		public ProcessOutputReader(TextBoxWriter textBoxWriter, StreamBuffer outputStreamBuffer, StreamBuffer errorStreamBuffer)
		{
			_textBoxWriter = textBoxWriter;
			_outputStreamBuffer = outputStreamBuffer;
			_errorStreamBuffer = errorStreamBuffer;
		}
コード例 #2
0
ファイル: ReplWriter.cs プロジェクト: rojepp/vsClojure
 public ReplWriter(Process process, TextBoxWriter textBoxWriter)
 {
     _process = process;
     _textBoxWriter = textBoxWriter;
 }