C# Keywords
출처 : http://msdn.microsoft.com/en-us/library/x53a06bb.aspx
C# Keywords
Keywords are predefined, reserved identifiers that have special meanings to the compiler. They cannot be used as identifiers in your program unless they include @ as a prefix. For example, @if is a valid identifier but if is not because if is a keyword.
The first table in this topic lists keywords that are reserved identifiers in any part of a C# program. The second table in this topic lists the contextual keywords in C#. Contextual keywords have special meaning only in a limited program context and can be used as identifiers outside that context. Generally, as new keywords are added to the C# language, they are added as contextual keywords in order to avoid breaking programs written in earlier versions.
'Programming > C#' 카테고리의 다른 글
NTP 서버에서 시간 가져오기(SNTP) (0) | 2014.07.14 |
---|---|
C# 외부 프로그램 종료하기 (0) | 2014.05.20 |
Standard Numeric Format Strings (0) | 2014.05.13 |
숫자 3자리마다 콤마(,) 찍기 (0) | 2014.05.13 |
플래그 데이터와 이진 연산 (0) | 2014.04.04 |