Boo.Lang.Compiler.CompilerErrorFactory.MethodArgumentCount C# (CSharp) Метод

MethodArgumentCount() публичный статический Метод

public static MethodArgumentCount ( Node node, string name, int count ) : CompilerError
node Node
name string
count int
Результат CompilerError
        public static CompilerError MethodArgumentCount(Node node, string name, int count)
        {
            return Instantiate("BCE0016", node, name, count);
        }
CompilerErrorFactory