I don't remember a discussion that came to that conclusion. Got a pointer to it, or can you reiterate the disadvantages that were discussed then?
/ Martin Stjernholm, Roxen IS
Previous text:
2003-12-20 13:58: Subject: C#-like properties
This is just the old "overloading assignment" feature, which has been discussed before. I think the general opinion was that its disadvantages outweighed its advantages.
Ofcourse, the problem can be solved by implementing the get and set methods manually,
Wasn't that exactly what you did with these two lines?
get { return foo; } set { foo = value; }
/ Marcus Comstedt (ACROSS) (Hail Ilpalazzo!)