StoryTeller.Persistence.TestXmlNode.this C# (CSharp) Метод

this() публичный Метод

public this ( string attName ) : string
attName string
Результат string
        public string this[string attName]
        {
            get { return _element.GetAttribute(attName); }
            set
            {
                if (value.IsEmpty()) return;
                _element.SetAttribute(attName, value);
            }
        }