Microsoft.Scripting.Interpreter.CallInstruction.IndexIsNotReturnType C# (CSharp) 메소드

IndexIsNotReturnType() 개인적인 정적인 메소드

private static IndexIsNotReturnType ( int index, MethodInfo target, ParameterInfo pi ) : bool
index int
target System.Reflection.MethodInfo
pi System.Reflection.ParameterInfo
리턴 bool
        private static bool IndexIsNotReturnType(int index, MethodInfo target, ParameterInfo[] pi) {
            return pi.Length != index || (pi.Length == index && !target.IsStatic);
        }