New Features in C# 4.0 Aasim Naseem, July 4, 2010 | Read Count: 15,482April 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: 305Economic impact of Eid-ul-Adha PMP CertificationMay 23, 2025 | Read Count: 508Best PMP Study Resources for 2025 (Books, Courses, Tools & More) Agile & FrameworksMay 7, 2025 | Read Count: 484Agile vs Scrum: Finally Understanding the Difference Agile & FrameworksApril 25, 2025 | Read Count: 510When 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 SharePoint remove commas from number fields January 21, 2019 | Read Count: 6,440April 9, 2025 Category: My Tutorials > Random TipsIn some instances you don’t want number fields to display with comma’s in SharePoint views. Unfortunately, there is no setting to not display commas on number fields. Use Calculated field to remove comma’s from number field For this example, I’m going to display a number… Read More
Random Tips Date Formatting in C# June 15, 2010 | Read Count: 15,432April 7, 2025 Category: My Tutorials > Random TipsHello all. hope doing well … here is another tip related to C# programming …. i found it useful so sharing with you people … this is how you can format date in different format in asp.net / C# the usage is as follows… Read More
Random Tips 9 Tools For Multi-Browser Web Development September 15, 2009 | Read Count: 16,497April 7, 2025 Category: My Tutorials > Random Tips With the positive reception of Opera 10, the importance of cross-browser testing for web developers is more important than ever. Taking the time to test your new pages in each individual version of Opera, Chrome, Firefox, Safari, and Internet Explorer (and possibly others) can be an… Read More