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 C2106

'operator' : left operand must be l-value

The operator must have an l-value as its left operand. The following sample generates C2106:

void main() {
   int a;
   1 = a;   // C2106
   // try ..
   // a = 1;
}