PowerShell - Functions
Why does the following function not receive any input when piped data is sent to it?
function Display-Data {
param($Data)
process { Write-Output $Data }
}
1,2,3 | Display-Data