항목
    about_Reserved_Words

간단한 설명
    Windows PowerShell에서 특별한 의미를 갖고 있기 때문에 식별자로 사용할 수 없는 예약어를 나열합니다.

자세한 설명
    Windows PowerShell에는 특별한 의미를 갖고 있는 특정 단어가 있습니다. 이러한 단어가 따옴표 없이 
    표시되면 Windows PowerShell은 이러한 단어를 단순히 문자열로 취급하는 대신 이러한 단어의 특별한 
    의미를 적용하려고 합니다. 특별한 의미를 호출하지 않고 이러한 단어를 명령이나 스크립트에서 매개 
    변수 인수로 사용하려면 예약어를 따옴표로 묶으십시오.

    다음은 Windows PowerShell의 예약어입니다.

        Break       
        Continue
        Do
        Else
        Elseif
        Filter
        For
        Foreach
        Function
        If
        In
        Local
        Private
        Return
        Switch
        Until
        Where
        While

    Foreach, If, For, While 등의 언어 문에 대한 자세한 내용을 보려면 "get-help"를 입력하고 "about_" 
    접두사와 문 이름을 차례로 입력합니다. 예를 들어 Foreach 문에 대한 정보를 얻으려면 다음과 같이 
    입력하십시오.

	get-help about_foreach

    Filter 문이나 Return 문에 대한 자세한 내용을 보려면 다음과 같이 입력하십시오.

        get-help about_functions

참고 항목
    about_Command_Syntax
    about_Escape_Characters
    about_Language_Keywords
    about_Parsing
    about_Quoting_Rules
    about_Script_Blocks
    about_Special_Characters




목차