조건부 컴파일 식에는 Nullable 형식을 사용할 수 없습니다.
업데이트: 2007년 11월
Nullable types are not allowed in conditional compilation expressions
조건부 컴파일 지시문 식에는 nullable 형식을 사용할 수 없습니다. 예를 들어 다음 코드는 이 오류를 발생시킵니다.
'#Const triggerPoint = 0
'' Not valid.
'#If CType(triggerpoint, Boolean?) = True Then
' ' Body of the conditional directive.
'#End If
오류 ID: BC33111
이 오류를 해결하려면
- 지정한 nullable 형식을 제거합니다.