What with Delphi Prism coming soon, I've been looking at Oxygene (the Remobjects compiler, Delphi Prism will use), and have a found a few features I'd love to see in Delphi Win32. Some of my favourites are :
Inline Property expressions and implicit property variables
property Length: double;
property Width: double;
property Area: double read Length*Width
Property Initial Values
property Length: Integer := 15;
Iterators
While Iterators are available in Delphi, the use of sequences and the yield keyword makes creating them much easier.
method GetEmptyKeys: sequence of string;iterator;
...
property EmptyKeys : sequence of TKey read GetEmptyKeys;
...
...
...
method TMyClass.GetEmptyKeys
begin
for each key in keylist do
if key = '' then
yield key;
end;
I could go on and on, but those would be very nice to have.
note this question has kind of been asked before but not in relation to Prism. hereS
