true 리터럴(C# 참조)
업데이트: 2007년 11월
부울 값 true를 나타냅니다.
예제
class TrueTest
{
static void Main()
{
bool a = true;
Console.WriteLine( a ? "yes" : "no" );
}
}
/*
Output:
yes
*/
C# 언어 사양
자세한 내용은 C# 언어 사양의 다음 단원을 참조하십시오.
- 2.4.4.1 부울 리터럴