You said A = A and B = B is the same, but this is not true! You can make changes in a propery's getter and setter so A = A can change the variable like in the example below:
public Int32 A
{
get { return _A++; }
set { _A = value; }
}
So the compiler doesn't know if it is a misstake or not. Of course i would avoid such situations because its not so easy to work with code like this ( a.e. if you just have a assembly and don't know why A is changing each time ) and i would avoid to expose a explicit setter of such a property and prefer something like below.
public UInt32 UniqueID { get { _UniqueID++; } }
public void Reset()
{
_UniqueID = 0;
}
Conclusion
A compile time error isn't making any sense here because the compiler don't know what happens in the property ( Remember: A property is just a simplification of two methods, set_MyProperty and get_MyProperty ), also if the property changes ( a.e. by beeing virtual ) the behaviour may change too.
(EDIT) Avoid missleading namings
I write property and parameters in the same way you are doing it. So as example how a simple class might look:
public class MyClass
{
public Int32 Sample { get; private set; }
public MyClass(Int32 sample)
{
Sample = sample;
}
}
I'm getting into in the same trap like you every week around ~1 time so i did never thought about changing the namings. But there are some suggestions what you could use:
- Use
p(arameter) as prefix, however this is something which i would not recommend because it makes the code unreadable IMHO.
- Use
value as postfix, this seems ok for me. So instead of sample you would have sampleValue which is different to Sample ( The properties name ) and it should be easier to detect if the properties name is used instead of the parameters one
- Use
_ as prefix. I would't use it because i already use _ as prefix for members to enable fast access to them and makes intellisense look strange IMHO.
I think this depends totaly on you personal or company coding style but i personally would use Value as postfix.
{ get; set; }will output a warning and since thatpublic int A { get; set; }is the same aspublic int Ayou do not have to append{ get; set; }as they are allowed by default. Have a great day :) – Picrofo EGY Oct 26 '12 at 4:46public int Ais NOT the same aspublic int A { get; set; }. The first is a public field, the second is a public property, Very different things. To the OP; excellent question. – Alastair Pitts Oct 26 '12 at 5:09Cis a struct then you won't be able to use thethisstatement until all the fields are assigned. – ja72 Oct 26 '12 at 5:20