Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsDuckTyped C# (CSharp) Méthode

IsDuckTyped() public méthode

public IsDuckTyped ( Expression expression ) : bool
expression Boo.Lang.Compiler.Ast.Expression
Résultat bool
        public virtual bool IsDuckTyped(Expression expression)
        {
            IType type = expression.ExpressionType;
            return type != null && IsDuckType(type);
        }
TypeSystemServices