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

IsCallable() public méthode

public IsCallable ( IType type ) : bool
type IType
Résultat bool
        public bool IsCallable(IType type)
        {
            return (TypeType == type) || IsCallableType(type) || IsDuckType(type);
        }
TypeSystemServices