dotnet-api-docs icon indicating copy to clipboard operation
dotnet-api-docs copied to clipboard

Documentation is inconsistent regarding the implementation.

Open Rubidium37 opened this issue 7 months ago • 1 comments

The IsEmpty implementation tests the Width and Height properties for 0 or negative values. The documentation only states about equality to 0. The XML doc is inconsistent as well.

See public readonly bool IsEmpty => (Width <= 0) || (Height <= 0);

Rubidium37 avatar Jul 01 '24 07:07 Rubidium37