Catrobat.IDE.Core.Utilities.Helpers.XElementExtensions.HasAttribute C# (CSharp) Метод

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

public static HasAttribute ( this element, string name ) : bool
element this
name string
Результат bool
        public static bool HasAttribute(this XElement element, string name)
        {
            return element.Attribute(name) != null;
        }