The documentation of HashAlgorithm in the following target frameworks incorrectly mentions that it has an base interface of ICryptoTransform when this is not true:
If you browse the source for HashAlgorithm.cs you can find that the interface ICryptoTransform is only added for .NET Standard 2.0
I would attempt a PR to fix the documentation mistake but I do not know how to show different base interfaces for the combination of target frameworks.
The documentation of
HashAlgorithmin the following target frameworks incorrectly mentions that it has an base interface ofICryptoTransformwhen this is not true:If you browse the source for HashAlgorithm.cs you can find that the interface
ICryptoTransformis only added for .NET Standard 2.0I would attempt a PR to fix the documentation mistake but I do not know how to show different base interfaces for the combination of target frameworks.