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

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

public static LocalAlreadyExists ( Node node, string name ) : CompilerError
node Node
name string
Результат CompilerError
        public static CompilerError LocalAlreadyExists(Node node, string name)
        {
            return Instantiate("BCE0067", node, name);
        }
CompilerErrorFactory