Questions tagged [language-enhancement]

4 questions
5
votes
9 answers

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…
3
votes
1 answer

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.
Rory Becker
  • 15,341
  • 16
  • 63
  • 93
0
votes
1 answer

Speech To Text enhancement

This question might sound dummy for you guys, i'm just copy pasting my pain from my end users to you. I have developed an app for a company which will let users perform search for certain items in a database. The app allows for speaking as an input…
0
votes
0 answers

Syntax to monkey patch a class in python

Is there any reason why this syntax wouldn't be possible? def myclass.method(self): pass Instead, python currently uses assignment, such as: def f(self): pass myclass.method = f
benjimin
  • 2,128
  • 17
  • 35