YamlDotNet.ReflectionExtensions.IsAssignableFrom C# (CSharp) Method

IsAssignableFrom() public static method

public static IsAssignableFrom ( this type, Type source ) : bool
type this
source System.Type
return bool
        public static bool IsAssignableFrom(this Type type, Type source)
        {
            return type.IsAssignableFrom(source.GetTypeInfo());
        }

Same methods

ReflectionExtensions::IsAssignableFrom ( this type, TypeInfo source ) : bool