language-enhancement

What language enhancements do you think Delphi(Native version) needs?

I've been a long-time Delphi developer and honestly day by day it started to feel more and more cumbersome especially in this age of dynamic languages like Python or Ruby. And not only the dynamic ones are progressing fast, C# and Java too are progressing at a fast rate due to competition (which were more or less comparable to Delphi's l...

Where is the best place to suggest language enhancements to the MS Language teams?

Pretty much like the title says.. I'm wondering where the place is to suggest language enhancements. A place where the VB and C# language teams hang out? A central repository of ideas for the future of these languages? Something like that. ...

Do you think "auto interface implementation" would be useful in .NET / C#

Consider this: public class interface Person : IPerson { int ID { get; protected set; } string FirstName { get; set; } string LastName { get; set; } string FullName { get { return FirstName + " " + LastName; } } } And this: public class StubPerson : IPerson { int ID { get { return 0; protected set { } } string FirstNa...