Boo.Lang.Runtime.CandidateMethod.CandidateMethod C# (CSharp) Метод

CandidateMethod() публичный Метод

public CandidateMethod ( MethodInfo method, int argumentCount, bool varArgs ) : System
method System.Reflection.MethodInfo
argumentCount int
varArgs bool
Результат System
        public CandidateMethod(MethodInfo method, int argumentCount, bool varArgs)
        {
            _method = method;
            _argumentScores = new int[argumentCount];
            _varArgs = varArgs;
        }