I have installed new version of visual studio and set the project to C# 8. When I tried to use new interface feature like below it said that I cannot implement in interface which seems that somehow I cannot use new feature. Can anyone explain why, is it still not included in 2019 preview?
interface IDefaultInterfaceMethod
{
public void DefaultMethod()
{
Console.WriteLine("I am a default method in the interface!");
}
}
Default interface methods aren't available in .NET Core 3.0 Preview 1. This really is a preview preview - even async enumerables won't work without some manual fixes. The Roslyn team decided to release the preview even though some things wouldn't work right out :
Based on this:
All of the C# 8 features are still early in development and are likely to change. So it would be better to wait until the features end up in the final release. The following blog could be also helpful:
Any estimation for C# 8.0 release date?
Not all C# 8.0 features are available yet (Preview 1 of Visual Studio 2019). You can find the list of current available features in the following link:
Take C# 8.0 for a spin