PowerShell에 캐스팅.이상한 구문 파일에서 변수로 XML을 읽는 작업은 다음과 같이 수행할 수 있습니다. [xml]$x = Get-Content myxml.xml 하지만 왜 안 됩니까? $x = [xml]Get-Content myxml.xml 다음과 같은 의미가 있습니다. Unexpected token 'Get-Content' in expression or statement. At line:1 char:20 + $x=[xml]get-content