convert images to avif

This commit is contained in:
Marcello 2024-06-25 14:02:56 +02:00
parent 8026e1465b
commit b74f634cd2
Signed by: m-lamonaca
SSH key fingerprint: SHA256:8db8uii6Gweq7TbKixFBioW2T8CbgtyFETyYL3cr3zk
53 changed files with 17 additions and 17 deletions

View file

@ -2148,7 +2148,7 @@ Generic type parameters support covariance and contravariance to provide greater
- **Contravariance**: Enables to use a more generic (less derived) type than originally specified.
- **Invariance**: it's possible to use _only_ the type originally specified; so an invariant generic type parameter is neither covariant nor contravariant.
![covariance-vs-contravariance](../../../img/dotnet_covariant_contravariant.png)
![covariance-vs-contravariance](../../../img/dotnet_covariant_contravariant.avif)
> **Note**: annotate generic type parameters with `out` and `in` annotations to specify whether they should behave covariantly or contravariantly.