diff between properties without or with @property ?

D-ratiseur ThisAdressDoesntExist at nowhere.fr
Mon Mar 4 08:35:00 PST 2013


Hello, what's the difference between a property declared  without 
a @property block and another one with? It seems that both forms 
are possible:

---
void Prop1(int AValue);
int Prop1();

or

@property
{
     void Prop1(int AValue);
     int Prop1();
}
---

Does it has something to do with the RTTI/serialization such as 
the "published" keyword in Pascal ? I cant find any clue in the 
manual.


More information about the Digitalmars-d mailing list