You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If A and B are properties, the correct semantics of x.A = x.B = v in C#: set x.A to the value that x.B was set (including implicit conversions), not using property getters (it even works with set-only properties).
The text was updated successfully, but these errors were encountered:
If
A
andB
are properties, the correct semantics ofx.A = x.B = v
in C#: setx.A
to the value thatx.B
was set (including implicit conversions), not using property getters (it even works with set-only properties).The text was updated successfully, but these errors were encountered: