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

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

public static NoApropriateConstructorFound ( Node node, IType typeName, string signature ) : CompilerError
node Node
typeName IType
signature string
Результат CompilerError
        public static CompilerError NoApropriateConstructorFound(Node node, IType typeName, string signature)
        {
            return Instantiate("BCE0024", node, typeName, signature);
        }
CompilerErrorFactory