Click here to Skip to main content
15,867,968 members
Articles / Programming Languages / C#

5 nice things to have in C# 5.0

Rate me:
Please Sign up or sign in to vote.
4.93/5 (24 votes)
28 Sep 2010CPOL4 min read 105.5K   26   27
Few new specifications on C# 5.0, a future of C#

C# 4.0 is out with lots of new specs this year. Few of them are really good, like the support of Task level Parallelism, Dynamic behavior of objects, etc. So C# is very rich now in all respects. But this is not the end of everything. We would love to have new things to come up with C#. So let's discuss a few things which I would love to have.

There is already a buzz around on C# 5.0 specifications in forums. A notable discussion around should be some threads like:

etc. These community links are really great where a lot of people voted for new language specs, while quite a few things are already in process like...

Binding Operators

Binding Operators may be C# 5.0. The support for Binding on .NET objects is awesome. I came to know this from Chris on his post where he speaks how Binding operators looked like long ago. The Delphi assignment operator := is now being used for this purpose. :=: would be used for two way binding. Thus:

C#
comboBox1.Text :=: textBox1.Text; 

means there would be two way binding between the properties so that when ComboBox1.Text changes its Text, it will automatically change the value of Textbox1.Text. Binding is actually not a new thing to the system. In WPF, we already have Binding in place, but for that we need the properties to have implemented from INotifyPropertyChanged. So it is not in the language, the WPF objects are doing this internally by handling the PropertyChanged event on the object. But if that is included as an operator, it would be a cool feature to add on.

Support for Dynamic to the Compiler

Another important candidate for C# 5.0 would be the support for dynamic objects to the compiler itself. There are quite a few occasions where we already did face the flavor of Dynamic behavior of object. You can now defer the determination of type for the object to runtime using the keyword dynamic which is a compile time dynamic while runtime static. The introduction of Expression Trees also defers the compilation of an expression at runtime. You can create objects dynamically at runtime using either inheriting from DynamicObject (which is very easy to do) or by using CodeDom to compile a code at runtime and run the code using reflection. But what if these things are supported by the compiler itself.

As pointed out by Magnus in his post, The future of C# 4.0 and then 5.0, he clearly pointed out what the next version of C# would add up. The compiler must be supporting quite a number of APIs which lets you tweak your code to generate and compile the code at runtime.

But these are not the end of C# 5.0. People all around the globe are putting efforts to make a Wishlist on C# 5.0. A few of those might be:

Pavel's Wishlist on C# 5.0 where he specified quite a number of interesting specs on C# 5.0 but will it be all.

Probably if you ask me what would be your own language features which you like to see, I may name quite a few which I miss:

1. Support for parametrized constructors in Generics.

Yes. it would be nice to have this option in. As we have:

C++
public class T MyClass : T: class, new()

//we might have 
public class T MyClass : T:class, new(int)

This might need adjustment to the compiler. I don't know if it is possible or not. But I definitely miss this in C#.

2. Support for WeakDelegate or WeakEvents

WeakReference, as I have discussed already in my blog or you come across it somewhere else, gives you a tweak to GC. It lets you refer to an object weakly while the GC may still collect it in the process. Thomas, rightly identified that WeakDelegate does not work now. You cannot have WeakDelegate defined in your scope.

3. Better treatment for Null

Working with Null has always been a problem for me. We have to treat nulls separately because there is no type associated with Nulls. With the introduction of Nullables around or Null coalesce operators, still there is scope of improving the Null treatment in the language. Say for instance,

C#
int x? = null;
int y? = x + 40;

which results Y to be null. But don't you think there is a scope of betterment here where the nullables might be treated better in case of working with Operations.

Other than that, we could also have ??? operator in place to treat situations like this:

C#
Myobject obj = null;

Myotherobj obj2 = obj.MyProperty ??? new Myotherobj();

It was introduced by Earlz in his post. Really looks nice, huh.

4. Smart Case support

Yes, Switch - Case could allow expressions. While working with it, I miss it very often. Just like what Charles pointed out, I agree with him totally. I would like to have the option to specify:

C#
switch(myobj)
{
   case string.IsNullorEmpty(myotherobj):
                  .....
   case myotherobj.Trim().Lower:
         ....
}

5. Extension properties

Just as we support extension methods, we could also have extension properties which could probably be used from Extension methods only. It is nice to have in certain cases.

C#
[Associate(string)]
public static int MyExtensionProperty { get;set;}

Something like this might come in very handy at times. Probably some other syntax than Attribute Associate would be more fruitful.

Finally, I would like to see your feedback on the topic. Any other things which you miss? You can point them out to me.

Thanks for reading.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
President
India India
Did you like his post?

Oh, lets go a bit further to know him better.
Visit his Website : www.abhisheksur.com to know more about Abhishek.

Abhishek also authored a book on .NET 4.5 Features and recommends you to read it, you will learn a lot from it.
http://bit.ly/EXPERTCookBook

Basically he is from India, who loves to explore the .NET world. He loves to code and in his leisure you always find him talking about technical stuffs.

Working as a VP product of APPSeCONNECT, an integration platform of future, he does all sort of innovation around the product.

Have any problem? Write to him in his Forum.

You can also mail him directly to abhi2434@yahoo.com

Want a Coder like him for your project?
Drop him a mail to contact@abhisheksur.com

Visit His Blog

Dotnet Tricks and Tips



Dont forget to vote or share your comments about his Writing

Comments and Discussions

 
Questionextension property not OK Pin
Member 1023634812-Sep-15 21:48
Member 1023634812-Sep-15 21:48 
GeneralMy vote of 5 Pin
Renju Vinod2-Oct-13 23:08
professionalRenju Vinod2-Oct-13 23:08 
QuestionNice to have Pin
jfriedman31-May-13 20:50
jfriedman31-May-13 20:50 
GeneralMy vote of 5 Pin
Tamil Selvan K19-Jul-12 22:15
Tamil Selvan K19-Jul-12 22:15 
GeneralMy vote of 3 Pin
jfriedman11-Sep-11 8:14
jfriedman11-Sep-11 8:14 
Extension Operators and Properties?

modified 18-Nov-11 16:52pm.

GeneralOther proposal Pin
Stéphane Issartel13-Oct-10 5:56
Stéphane Issartel13-Oct-10 5:56 
GeneralRe: Other proposal Pin
Abhishek Sur18-Oct-10 10:33
professionalAbhishek Sur18-Oct-10 10:33 
GeneralRe: Other proposal Pin
Jaren Duan6-Jan-15 18:00
Jaren Duan6-Jan-15 18:00 
GeneralRe: Other proposal Pin
Stéphane Issartel7-Jan-15 2:05
Stéphane Issartel7-Jan-15 2:05 
GeneralNone of the above Pin
WebBiscuit8-Oct-10 22:58
WebBiscuit8-Oct-10 22:58 
GeneralA Modest Proposal Pin
Lee Robie5-Oct-10 15:51
Lee Robie5-Oct-10 15:51 
GeneralMy vote of 5 Pin
Anurag Gandhi5-Oct-10 6:57
professionalAnurag Gandhi5-Oct-10 6:57 
GeneralInteresting ideas! Pin
Kubajzz29-Sep-10 2:46
Kubajzz29-Sep-10 2:46 
GeneralRe: Interesting ideas! Pin
Abhishek Sur29-Sep-10 11:53
professionalAbhishek Sur29-Sep-10 11:53 
GeneralRe: Interesting ideas! Pin
Kubajzz30-Sep-10 8:45
Kubajzz30-Sep-10 8:45 
QuestionAOP support? Pin
Hesham Amin29-Sep-10 0:51
Hesham Amin29-Sep-10 0:51 
AnswerRe: AOP support? Pin
Abhishek Sur29-Sep-10 12:53
professionalAbhishek Sur29-Sep-10 12:53 
GeneralMy vote of 5 Pin
Nish Nishant28-Sep-10 21:41
sitebuilderNish Nishant28-Sep-10 21:41 
GeneralRe: My vote of 5 Pin
Abhishek Sur29-Sep-10 11:56
professionalAbhishek Sur29-Sep-10 11:56 
GeneralAwesome! Pin
Sushant Joshi28-Sep-10 21:08
Sushant Joshi28-Sep-10 21:08 
GeneralRe: Awesome! Pin
Kubajzz29-Sep-10 2:48
Kubajzz29-Sep-10 2:48 
GeneralRe: Awesome! Pin
Abhishek Sur29-Sep-10 12:00
professionalAbhishek Sur29-Sep-10 12:00 
GeneralRe: Awesome! Pin
Sushant Joshi29-Sep-10 17:27
Sushant Joshi29-Sep-10 17:27 
GeneralMy vote of 5 Pin
Kunal Chowdhury «IN»28-Sep-10 20:04
professionalKunal Chowdhury «IN»28-Sep-10 20:04 
GeneralRe: My vote of 5 Pin
Abhishek Sur29-Sep-10 11:58
professionalAbhishek Sur29-Sep-10 11:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.