what's the different in the System.IO.Pipes namespace and System.IO.Pipelines namespace class. So what's case for System.IO.Pipes and what's case for System.IO.Pipelines.
I'm confused with the System.IO.Pipes namespace and System.IO.Pipelines,because there have some common class name.
System.IO.Pipes
This is provided as part of the .NET libraries. It's for IPC.
System.IO.Pipelines
This is made available separately as a NuGet package. It's a high performance IO library (writing files, parsing strings, etc.).