We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I did not find any documentation about which of the new C#9 language features are supported in a library that targets netstandard2.0. My questions:
Thank you and best regards!
The text was updated successfully, but these errors were encountered:
Officially speaking, C#9 is only officially supported on .NET 5.
2. Covariant Returns (dotnet/csharplang#49), are currently not working, any chance to get this working with netstandard 2.0?
Covariant returns require support from the runtime, so they will never work on .NET Standard 2.0
That being said, as you've noticed some feature work just fine. @Sergio0694 Has a nice write-up of what works on unsupported runtimes. (Some features require a small amount of work on your part to make them work.)
Sorry, something went wrong.
Thank you very much.
No problem!
No branches or pull requests
I did not find any documentation about which of the new C#9 language features are supported in a library that targets netstandard2.0.
My questions:
Thank you and best regards!
The text was updated successfully, but these errors were encountered: