This commit is contained in:
Mihail Gribkov
2024-04-15 21:21:50 +03:00
committed by GitHub
parent b70e21ba28
commit 69fb1eb0a6
2 changed files with 3 additions and 1 deletions

View File

@@ -10,6 +10,8 @@ on:
paths-ignore: paths-ignore:
- 'docs/**' - 'docs/**'
pull_request: pull_request:
paths-ignore:
- 'docs/**'
jobs: jobs:
build: build:

View File

@@ -44,7 +44,7 @@ Interaction Services determines the most suitable [TypeConverter] for a paramete
3. It searches for a generic `TypeConverter<T>` with a matching type constraint. If there are more multiple matches, 3. It searches for a generic `TypeConverter<T>` with a matching type constraint. If there are more multiple matches,
the one whose type constraint is the most specialized will be chosen. the one whose type constraint is the most specialized will be chosen.
> [!NOTE} > [!NOTE]
> Alternatively, you can use the generic variant (`TypeConverter<T>`) of the > Alternatively, you can use the generic variant (`TypeConverter<T>`) of the
> [TypeConverter] base class which implements the following method body for `CanConvertTo()` method > [TypeConverter] base class which implements the following method body for `CanConvertTo()` method