|
C1017: Not l-value |
Top Previous Next |
Description:
Assignment statements must contain a value on left side of the equal sign (called an l-value). This can be a variable, an array element or a read-write property, and may not be a constant.
Example:
1 = x ' error C1017: l-value expected on the left of '='
|