Boo.Lang.Compiler.CompilerErrorFactory.NoApropriateOverloadFound C# (CSharp) Method

NoApropriateOverloadFound() public static method

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