This is an old revision of the document!
echo command
Prints message onto script output.
Advertisement
Syntax
echo <message>
Examples
echo "test only"
Converting to .NET Assembly
When converting script to .NET Assembly, map echo
command to any reporting functionality of your runtime environment. In .NET framework, you can use System.Console.WriteLine
. In PowerShell, you can use also Write-Host
cmdlet.