Ancestry.Daisy.Statements.StaticAnalysis.IsAggregateMethod C# (CSharp) Method

IsAggregateMethod() public static method

public static IsAggregateMethod ( MethodInfo m ) : bool
m System.Reflection.MethodInfo
return bool
        public static bool IsAggregateMethod(MethodInfo m)
        {
            return m.IsPublic && ExtractProceedFunction(m) != null;
        }