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

IsAssignableFrom() public method

public IsAssignableFrom ( IType other ) : bool
other IType
return bool
        public bool IsAssignableFrom(IType other)
        {
            if (other == this)
            {
                return true;
            }

            if (other == Null.Default)
            {
                return IsClass;
            }

            return false;
        }