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;
        }