Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsAssignableFrom C# (CSharp) Method

IsAssignableFrom() private static method

private static IsAssignableFrom ( IType expectedType, IType actualType ) : bool
expectedType IType
actualType IType
return bool
        private static bool IsAssignableFrom(IType expectedType, IType actualType)
        {
            return TypeCompatibilityRules.IsAssignableFrom(expectedType, actualType);
        }
TypeSystemServices