Here are some of the C#.NET 5.0 New Features - 1. Key Features Matrix: Microsoft has published a new version of C# 5.0 beta with CLR version 4.5. C# 5.0 introduces mainly two key features: Async Programming and Caller Information. 2. Asynchronous functions (Async and Await): Using Async and Await, you can use resources in the .NET Framework, to create an asynchronous method as easily as you create a synchronous method. Asynchronous methods are the methods that you define using async and await. Click on this slideshare link for details on new Asynchronous Pattern and Programming. 3. Caller Information: Caller Information attributes provide the information about the caller to a method. You can obtain the file path of the source code, the line number in the source code, and the member name of the caller. Caller Information helps us in tracing, debugging, and creating diagnostic tools. CallerFilePathAttribute - Full path of the [&hellip
↧