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

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

public static AttributeNotFound ( string elementName, string attributeName ) : CompilerError
elementName string
attributeName string
Результат CompilerError
        public static CompilerError AttributeNotFound(string elementName, string attributeName)
        {
            return Instantiate("BCE0013", LexicalInfo.Empty, elementName, attributeName);
        }
CompilerErrorFactory