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 C2234

'name' : arrays of references are illegal

Because pointers to references are not allowed, arrays of references are not possible. The following sample generates C2234:

main() {
   int i,j,k,l;

   int &array[4] = {i,j,k,l};   // C2234, delete the & to resolve the error
}