AoMBrgEditor.PssgNode.this C# (CSharp) Метод

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

public this ( string attributeName ) : PssgAttribute
attributeName string
Результат PssgAttribute
        public PssgAttribute this[string attributeName]
        {
            get
            {
                if (HasAttribute(attributeName))
                {
                    return attributes[attributeName];
                }
                throw new ArgumentOutOfRangeException("attributeName");
            }
            set
            {
                this[attributeName] = value;
            }
        }

Same methods

PssgNode::this ( int attributeID ) : PssgAttribute