Add a more functional (i.e. fewer-stubs) implementation of System.Data.Linq.
[mono.git] / mcs / docs / ecma334 / 14.13.1.xml
1 <?xml version="1.0"?>
2 <clause number="14.13.1" title="Simple assignment">
3   <paragraph>The = operator is called the simple assignment operator. In a simple assignment, the right operand must be an expression of a type that is implicitly convertible to the type of the left operand. The operation assigns the value of the right operand to the variable, property, or indexer element given by the left operand. </paragraph>
4   <paragraph>The result of a simple assignment expression is the value assigned to the left operand. The result has the same type as the left operand and is always classified as a value. </paragraph>
5   <paragraph>If the left operand is a property or indexer access, the property or indexer must have a set accessor. If this is not the case, a compile-time error occurs. </paragraph>
6   <paragraph>The run-time processing of a simple assignment of the form x = y consists of the following steps: <list><list_item> If x is classified as a variable: </list_item><list><list_item> x is evaluated to produce the variable. </list_item><list_item> y is evaluated and, if required, converted to the type of x through an implicit conversion (<hyperlink>13.1</hyperlink>). </list_item><list_item> If the variable given by x is an array element of a <non_terminal where="11.2">reference-type</non_terminal>, a run-time check is performed to ensure that the value computed for y is compatible with the array instance of which x is an element. The check succeeds if y is null, or if an implicit reference conversion (<hyperlink>13.1.4</hyperlink>) exists from the actual type of the instance referenced by y to the actual element type of the array instance containing x. Otherwise, a System.ArrayTypeMismatchException is thrown. </list_item><list_item> The value resulting from the evaluation and conversion of y is stored into the location given by the evaluation of x. </list_item></list><list_item> If x is classified as a property or indexer access: </list_item><list><list_item> The instance expression (if x is not static) and the argument list (if x is an indexer access) associated with x are evaluated, and the results are used in the subsequent set accessor invocation. </list_item><list_item> y is evaluated and, if required, converted to the type of x through an implicit conversion (<hyperlink>13.1</hyperlink>). </list_item><list_item> The set accessor of x is invoked with the value computed for y as its value argument. </list_item></list></list></paragraph>
7   <paragraph>
8     <note>[Note: The array covariance rules (<hyperlink>19.5</hyperlink>) permit a value of an array type A[] to be a reference to an instance of an array type B[], provided an implicit reference conversion exists from B to A. Because of these rules, assignment to an array element of a <non_terminal where="11.2">reference-type</non_terminal> requires a run-time check to ensure that the value being assigned is compatible with the array instance. In the example <code_example><![CDATA[
9 string[] sa = new string[10];  
10 object[] oa = sa;  
11 oa[0] = null;      // Ok  
12 oa[1] = "Hello";     // Ok  
13 oa[2] = new ArrayList();  // ArrayTypeMismatchException  
14 ]]></code_example>the last assignment causes a System.ArrayTypeMismatchException to be thrown because an instance of ArrayList cannot be stored in an element of a string[]. end note]</note>
15   </paragraph>
16   <paragraph>When a property or indexer declared in a <non_terminal where="11.1">struct-type</non_terminal> is the target of an assignment, the instance expression associated with the property or indexer access must be classified as a variable. If the instance expression is classified as a value, a compile-time error occurs. <note>[Note: Because of <hyperlink>14.5.4</hyperlink>, the same rule also applies to fields. end note]</note> </paragraph>
17   <paragraph>
18     <example>[Example: Given the declarations: <code_example><![CDATA[
19 struct Point  
20 {  
21    int x, y;  
22    public Point(int x, int y) {  
23       this.x = x;  
24       this.y = y;  
25    }  
26    public int X {  
27       get { return x; }  
28       set { x = value; }  
29    }  
30    public int Y {  
31       get { return y; }  
32       set { y = value; }  
33    }  
34 }  
35 struct Rectangle  
36 {  
37    Point a, b;  
38    public Rectangle(Point a, Point b) {  
39       this.a = a;  
40       this.b = b;  
41    }  
42    public Point A {  
43       get { return a; }  
44       set { a = value; }  
45    }  
46    public Point B {  
47       get { return b; }  
48       set { b = value; }  
49    }  
50 }  
51 ]]></code_example>in the example <code_example><![CDATA[
52 Point p = new Point();  
53 p.X = 100;  
54 p.Y = 100;  
55 Rectangle r = new Rectangle();  
56 r.A = new Point(10, 10);  
57 r.B = p;  
58 ]]></code_example>the assignments to p.X, p.Y, r.A, and r.B are permitted because p and r are variables. However, in the example <code_example><![CDATA[
59 Rectangle r = new Rectangle();  
60 r.A.X = 10;  
61 r.A.Y = 10;  
62 r.B.X = 100;  
63 r.B.Y = 100;  
64 ]]></code_example>the assignments are all invalid, since r.A and r.B are not variables. end example]</example>
65   </paragraph>
66 </clause>