Boo.Lang.Compiler.Steps.ProcessMethodBodies.IsMetaMethod C# (CSharp) Метод

IsMetaMethod() приватный статический Метод

private static IsMetaMethod ( IEntity entity ) : bool
entity IEntity
Результат bool
        private static bool IsMetaMethod(IEntity entity)
        {
            ExternalMethod m = entity as ExternalMethod;
            if (m == null) return false;
            return m.IsMeta;
        }
ProcessMethodBodies