これはtry catch
PowerShell 2.0の
$urls = "http://www.google.com", "http://none.greenjump.nl", "http://www.nu.nl"
$wc = New-Object System.Net.WebClient
foreach($url in $urls)
{
try
{
$url
$result=$wc.DownloadString($url)
}
catch [System.Net.WebException]
{
[void]$fails.Add("url webfailed $url")
}
}
しかし、私がやりたいのはc#のようなものです
catch( WebException ex)
{
Log(ex.ToString());
}
これは可能ですか?