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

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

public static Instantiate ( string code, Exception error ) : CompilerError
code string
error System.Exception
Результат CompilerError
        public static CompilerError Instantiate(string code, Exception error, params object[] args)
        {
            return new CompilerError(code, error, args);
        }

Same methods

CompilerErrorFactory::Instantiate ( string code, LexicalInfo location ) : CompilerError
CompilerErrorFactory::Instantiate ( string code, LexicalInfo location, Exception error ) : CompilerError
CompilerErrorFactory::Instantiate ( string code, Node anchor ) : CompilerError
CompilerErrorFactory::Instantiate ( string code, Node anchor, Exception error ) : CompilerError
CompilerErrorFactory