Build.Program.IsCommand C# (CSharp) Method

IsCommand() static private method

static private IsCommand ( MethodInfo method ) : bool
method System.Reflection.MethodInfo
return bool
        static bool IsCommand(MethodInfo method)
            => method.IsPublic && !method.IsStatic && method.DeclaringType != typeof(object);
    }