-
-
Notifications
You must be signed in to change notification settings - Fork 399
Open
Description
Hi,
like in issue #594 i ran into a new nullable issue.
In HtmlNode I see a lot of code like this:
#if NET8_0
HtmlNodeCollection?
#else
HtmlNodeCollection
#endif
This gives me false nullable warnings (return value can not be null regarding the interface) in .net 9 projects.
I think all code like this should be changed to
#IF NET8_0_OR_GREATER
Metadata
Metadata
Assignees
Labels
No labels