배열 차원이 일치하지 않으므로 '<variablename>'의 데이터 형식을 유추할 수 없습니다.
업데이트: 2007년 11월
Cannot infer a data type for '<variablename>' because the array dimensions do not match
배열을 초기화하는 데 사용된 차원이 선언의 차원과 일치하지 않으면 컴파일러가 배열의 데이터 형식을 유추할 수 없습니다. 예를 들어 다음 코드는 이 오류를 발생시킵니다.
' Valid. exampleArray1 is a one-dimensional array of integers.
Dim exampleArray1() = New Integer() {1, 2, 3}
' Not valid.
'Dim exampleArray2(,) = New Integer() {1, 2, 3}
'Dim exampleArray3(,) = New Integer() {}
오류 ID: BC36909