Boo.Lang.Compiler.CompilerErrorFactory.NoApropriateOverloadFound C# (CSharp) 메소드

NoApropriateOverloadFound() 공개 정적인 메소드

public static NoApropriateOverloadFound ( Node node, string signature, string memberName ) : CompilerError
node Node
signature string
memberName string
리턴 CompilerError
        public static CompilerError NoApropriateOverloadFound(Node node, string signature, string memberName)
        {
            return Instantiate("BCE0023", node, signature, memberName);
        }
CompilerErrorFactory