New Features in C# 4.0 Aasim Naseem, July 4, 2010 | Read Count: 15,474April 7, 2025 Category: My Tutorials > Random TipsVisual Studio 2010 is packed with new and enhanced features that simplify the entire development process from design to deployment. Customize your workspace with multiple monitor support. Create rich applications for SharePoint and the Web. Target multiple versions of the .NET Framework with the same tool. Eliminate the dreaded “no repro” problem with IntelliTrace. And much more. Visual Studio 2010 is here!And of course this means that C# 4.0 is also here. Let’s do a quick review of the new language features added in this release. Dynamic The dynamic keyword is a key feature of this release. It closes the gap between dynamic and statically-typed languages. Now you can create dynamic objects and let their types be determined at run time. With the addition of the System.Dynamicnamespace, you can create expandable objects and advanced class wrappers, and you can provide interoperability between different languages, including dynamic ones. Here is one quick example: dynamic contact = new ExpandoObject(); contact.Name = “Patrick Hines”; contact.Phone = “206-555-0144”; Covariance and Contravariance Variance on generic type parameters in interfaces and delegates is another important feature of this release. It doesn’t add much new functionality, but rather makes things work as you expected them to in the first place. The major advantage is hidden in this simple line, which didn’t compile until C# 4.0: IEnumerable<Object> objects = new List<String>(); The ability to implicitly convert references for objects instantiated with different type arguments makes it much easier to reuse code. Read the Covariance and Contravariance FAQ to learn more about this feature. Optional (or Default) Parameters People have been asking for this feature since C# 1.0. Three versions later, it’s finally here. Now you can assign a default value to a parameter right within the method declaration. The user of the method can either pass a value or simply skip the argument. In the latter case, the default value is passed to the method. Method declaration: public static void SomeMethod(int optional = 0) { } Method calls: SomeMethod(); // 0 is used in the method. SomeMethod(10); Named Arguments The order of parameters in a method declaration and the order of arguments you pass when calling the method don’t need to match anymore. You can provide arguments in any order you like by specifying parameter names in a method call. This might also improve the readability of your code. var sample = new List<String>(); sample.InsertRange(collection: new List<String>(), index: 0); sample.InsertRange(index: 0, collection: new List<String>()); Read more about optional parameters and named arguments on MSDN. Improved COM Interop The introduction of the dynamic keyword, optional parameters and named arguments enables improvement of COM interop. So, no more ugly code like this: var excelApp = new Excel.Application(); // . . . excelApp.get_Range(“A1”, “B4”).AutoFormat( Excel.XlRangeAutoFormat.xlRangeAutoFormatTable3, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing); You can now simply write the following: excelApp.Range[“A1”, “B3”].AutoFormat( Excel.XlRangeAutoFormat.xlRangeAutoFormatClassic2); By the way, this code uses one more new feature: indexed properties (take a closer look at those square brackets after Range.) But this feature is available only for COM interop; you cannot create your own indexed properties in C# 4.0. For more information about new COM interop features, once again, refer to MSDN. What Else? Of course, C# benefits not only from new language features, but also from improvements to its integrated development environment (IDE) and to the .NET Framework. Here are some links for further reading: Find all calls to and from your methods with the new Call Hierarchy window. Even if you have never heard of test-driven development (TDD), the Generate From Usage feature may help you to quickly prototype your application by generating method and class stubs, allowing you to concentrate on your current task rather than worrying about declarations. For TDD adepts, this feature might be a real performance booster. Check out this walkthrough for more details. Don’t forget to take a look at What’s New in the .NET Framework 4 and also at What’s New in Visual C# 2010 (just to make sure I didn’t miss something). And just in case, check out breaking changes for C# and .NET Framework. Last, but not least, don’t forget to report any problems at Microsoft Connect. Update. See a post: New IDE Features in Visual Studio 2010 for C# Developers. Happy coding Author Profile Aasim Naseem Hey, Thanks for your interest. I’m a PMP, AWS Solutions Architect, and Scrum Master certified professional with 17+ years of hands-on experience leading projects, building teams, and helping organizations deliver software solutions better, faster, and smarter. Outside of work, I’ve got a deep curiosity for history — especially ancient civilizations like Egypt. I also enjoy reflecting on the everyday moments that shape how we live and work. This blog is my space to share insights, lessons, and thoughts from both my professional journey and personal interests. Thanks for reading — and I hope you will find something here that matches your interest. Latest entries IslamJune 6, 2025 | Read Count: 283Economic impact of Eid-ul-Adha PMP CertificationMay 23, 2025 | Read Count: 493Best PMP Study Resources for 2025 (Books, Courses, Tools & More) Agile & FrameworksMay 7, 2025 | Read Count: 463Agile vs Scrum: Finally Understanding the Difference Agile & FrameworksApril 25, 2025 | Read Count: 493When Not To Use Agile: 5 Signs You Need a Different Approach Random Tips .NET.NET FrameworkASP.NetC# 4.0Covariance and ContravarianceDynamicImproved COM InteropNamed ArgumentsOptional (or Default) ParametersVisual Studio 2010
Random Tips Google Chrome Extensions Has Launched … February 2, 2010 | Read Count: 15,449April 7, 2025 Category: My Tutorials > Random Tipsthis is one of the thing i have been waiting since the birth of Chrome… yes … Chrome gets nearly 40,000 new extensions with support for Greasemonkey. Google Chrome has already captured 5 percent of the Internet browser share, and you can bet that number… Read More
Random Tips Google Task Bug; January 27, 2011 | Read Count: 14,452April 7, 2025 Category: My Tutorials > Random Tipscan anyone reproduce this issue in pop-out view of Task in your Gmail inbox; ? I’m getting this repeatedly; Some uncompleted tasks are strikethrough and some completed tasks are in normal text; See last five entries; Author Profile Aasim Naseem Hey, Thanks for your interest…. Read More
Random Tips Gmail Security Checklist October 19, 2010 | Read Count: 15,477 Category: My Tutorials > Random TipsWhether you just regained access to Gmail, or you want to make sure your account is secure, take a minute to complete Gmail security checklist to make sure your mail security measures are up to date. Step 1 – Your Computer Check for viruses and… Read More