From 6c41610cd2f3605f57fcb8cde0ec3e9201840c6c Mon Sep 17 00:00:00 2001 From: Sebastian Krysmanski Date: Sun, 7 Jul 2024 11:56:48 +0200 Subject: [PATCH] Extend documentation --- src/AppMotor.Core/Extensions/TypeExtensions.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/AppMotor.Core/Extensions/TypeExtensions.cs b/src/AppMotor.Core/Extensions/TypeExtensions.cs index 0993d038..d4e62bc4 100644 --- a/src/AppMotor.Core/Extensions/TypeExtensions.cs +++ b/src/AppMotor.Core/Extensions/TypeExtensions.cs @@ -621,6 +621,9 @@ static bool FindOpenGenericInterfaceFilter(Type interfaceTypeToCheck, object? cr /// Returns the implicit operator to convert from to this type. Returns null /// if no such operator exists. /// + /// + /// This method doesn't return an operator for built-in implicit conversions like int to long. + /// /// /// [MustUseReturnValue] @@ -633,6 +636,9 @@ static bool FindOpenGenericInterfaceFilter(Type interfaceTypeToCheck, object? cr /// Returns the implicit operator to convert from this type to . Returns null /// if no such operator exists. /// + /// + /// This method doesn't return an operator for built-in implicit conversions like int to long. + /// /// /// [MustUseReturnValue] @@ -645,6 +651,9 @@ static bool FindOpenGenericInterfaceFilter(Type interfaceTypeToCheck, object? cr /// Returns the explicit operator to convert from to this type. Returns null /// if no such operator exists. /// + /// + /// This method doesn't return an operator for built-in explicit conversions like double to int. + /// /// /// [MustUseReturnValue] @@ -657,6 +666,9 @@ static bool FindOpenGenericInterfaceFilter(Type interfaceTypeToCheck, object? cr /// Returns the explicit operator to convert from this type to . Returns null /// if no such operator exists. /// + /// + /// This method doesn't return an operator for built-in explicit conversions like double to int. + /// /// /// [MustUseReturnValue]