html-agility-pack icon indicating copy to clipboard operation
html-agility-pack copied to clipboard

Still wrong nullable attributes

Open FvS-MR opened this issue 6 months ago • 0 comments

As in https://github.com/zzzprojects/html-agility-pack/issues/587 there are still missing attributes,

E.g.


public HtmlNode FirstChild
{
	get { return !HasChildNodes ? null : _childnodes[0]; }
}

public HtmlNode LastChild
{
	get { return !HasChildNodes ? null : _childnodes[_childnodes.Count - 1]; }
}

FvS-MR avatar May 30 '25 11:05 FvS-MR