Tagged Questions
The language-enhancement tag has no wiki summary.
5
votes
9answers
1k views
Do you think “auto interface implementation” would be useful in .NET / C# [closed]
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 + ...
3
votes
1answer
100 views
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 ...
1
vote
7answers
530 views
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 ...