Attach() private method

private Attach ( PipedInputStream iss ) : void
iss PipedInputStream
return void
コード例 #1
0
ファイル: PipedInputStream.cs プロジェクト: nuxleus/ngit
 public PipedInputStream(PipedOutputStream os) : this()
 {
     os.Attach(this);
 }
コード例 #2
0
ファイル: PipedInputStream.cs プロジェクト: LunarLanding/ngit
		public PipedInputStream (PipedOutputStream os): this ()
		{
			os.Attach (this);
		}