有没有办法在PowerShell中管道.NET流?
像
process {
$stream = New-Object System.IO.MemoryStream
$write = New-Object System.IO.StreamWriter $stream
$stream | Out-String
$write.Write("hello")
$write.Flush()
}
注意在$ stream传送之后发生写入。基本上我试图建立一种方法,当数据进入流中时,将未完成的流传输到输出或主机流中。