6
언제 Write-Error vs. Throw를 사용해야합니까? 종료 대 비 종료 오류
PoshCode ( http://poshcode.org/3226) 에서 Get-WebFile 스크립트를 살펴보면 다음과 같은 이상한 충돌을 발견했습니다. $URL_Format_Error = [string]"..." Write-Error $URL_Format_Error return 다음과 반대되는 이유는 무엇입니까? $URL_Format_Error = [string]"..." Throw $URL_Format_Error 또는 더 나은 : $URL_Format_Error = New-Object System.FormatException "..." Throw $URL_Format_Error 내가 이해하는 것처럼 종료하지 않는 오류에는 Write-Error를 사용하고 오류는 종료하는 경우 Throw를 …