description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Warning (level 1) C4817 |
Compiler Warning (level 1) C4817 |
11/04/2016 |
|
|
a68f5486-6940-4934-9f93-bfd4d71f92a9 |
'member' : illegal use of '.' to access this member; compiler replaced with '->'
The wrong member access operator was used.
The following sample generates 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
}