컴파일러 경고(수준 1) C4817
'member': '.'를 잘못 사용하여 이 멤버에 액세스합니다. 컴파일러가 '->'로 대체됨
잘못된 멤버 액세스 연산자가 사용되었습니다.
예시
다음 샘플에서는 C4817을 생성합니다.
// C4817.cpp
// compile with: /clr /W1
using namespace System;
int main() {
array<Int32> ^ a = gcnew array<Int32>(100);
Console::WriteLine( a.Length ); // C4817
Console::WriteLine( a->Length ); // OK
}