New Features in C# 4.0 Aasim Naseem, July 4, 2010 | Read Count: 15,501April 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: 336Economic impact of Eid-ul-Adha PMP CertificationMay 23, 2025 | Read Count: 565Best PMP Study Resources for 2025 (Books, Courses, Tools & More) Agile & FrameworksMay 7, 2025 | Read Count: 516Agile vs Scrum: Finally Understanding the Difference Agile & FrameworksApril 25, 2025 | Read Count: 543When 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 A new look for Gmail August 11, 2010 | Read Count: 15,501April 7, 2025 Category: My Tutorials > Random TipsGoogle has redesign his main interface for Gmail, and has finally got a new contact manager, which is 100 times better than the earlier one. The new contact manager is fast and easier to use, and is definitely a welcome change to one of the… Read More
Random Tips “Also Include” :: Gmail Feature; April 19, 2011 | Read Count: 14,477April 7, 2025 Category: My Tutorials > Random Tips I have been noticing a nice small update in gmail compose form; While adding your contact in To/CC/BCC fields, gmail automatically shows you some of your contacted you may wish to add in receivers list, as shown in image bellow; By just clicking on… Read More
Random Tips Run Windows and Android Simultaneously October 13, 2010 | Read Count: 15,481April 7, 2025 Category: My Tutorials > Random Tips[youtube=http://www.youtube.com/watch?v=UNo6pn-dnSQ] Although this is a video of a Nokia N800, which isn’t even a smartphone, VMWare’s MVP hypervisor virtual machine is enabling it to run both Windows and Android simultaneously. The virtual machine runs in the background of the native OS and allows a user… Read More