Skip to main content

Posts

Showing posts with the label What's New in C# 8.0 Features?

A Glimpse of the future in the C#, What's New in C# 8.0 Features?

Today, I happy to share the some selected and important feature proposals for C# 8.0 which are introduce in the below - ü   Extension Everything ü   Default Implementation on Interfaces ü   Nullable Reference Types ü   Preventing Assignment from Nullable to Non-Nullable Some Are Proposed Features will available on future - ü   Default interface methods ü   Support for virtual extension methods ü   Overrides in interfaces ü   Reabstraction ü   Static and private methods ü   Base interface invocations ü   CLR support API ü   Abstract Override These all are available in the Future Release. ü   Stayed Informed - Object Oriented Programming Concepts (OOPs) Extension Everything - I hope you are familiar with an extension method which was introduced in C# 3.0. Extension method is a static method to the existing static class. Extension methods enable you to add methods to the existing ...