NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error C2527

'identifier' : array of references must be fully initialized

Elements of the specified array are not initialized. You must supply an initializer for every element in an array of references.

Example

int a, b, c;
int &ai[3];               // error, elements not initialized
int &ai[3] = { a, b, c }; // OK