xxxxxxxxxx
function f {
[CmdletBinding()]
param(
[Parameter(
ValueFromPipeline,
ValueFromPipelineByPropertyName
)]
$Content
)
begin { $output = [System.Collections.Generic.List[object]]::new() }
process { $output.Add($Content) }
end { $output | Out-String -Stream }
}