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

Instantiate() 개인적인 정적인 메소드

private static Instantiate ( string code, LexicalInfo location ) : CompilerError
code string
location LexicalInfo
리턴 CompilerError
        private static CompilerError Instantiate(string code, LexicalInfo location, params object[] args)
        {
            return new CompilerError(code, location, Array.ConvertAll<object, string>(args, DisplayStringFor));
        }

Same methods

CompilerErrorFactory::Instantiate ( string code, Exception error ) : 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