TypeExtensionsIsImplementationOfGenericType(Type, Type, Type) Method
Gets whether the given type, its base classes or interfaces implement the specified genericTypeDefinition.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 8.0.0
public static bool IsImplementationOfGenericType(
this Type type,
Type genericTypeDefinition,
out Type genericType
)
<ExtensionAttribute>
Public Shared Function IsImplementationOfGenericType (
type As Type,
genericTypeDefinition As Type,
<OutAttribute> ByRef genericType As Type
) As Boolean
public:
[ExtensionAttribute]
static bool IsImplementationOfGenericType(
Type^ type,
Type^ genericTypeDefinition,
[OutAttribute] Type^% genericType
)
[<ExtensionAttribute>]
static member IsImplementationOfGenericType :
type : Type *
genericTypeDefinition : Type *
genericType : Type byref -> bool
- type Type
- The type to check.
- genericTypeDefinition Type
- The generic type definition.
- genericType Type
- When this method returns , then this parameter contains the found implementation of the specified genericTypeDefinition.
Boolean if the given
type implements the specified
genericTypeDefinition; otherwise,
.In Visual Basic and C#, you can call this method as an instance method on any object of type
Type. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).