Mono.Addins.ExtensionNodeList.this C# (CSharp) Method

this() public method

Returns the node in the specified index.
public this ( int n ) : Mono.Addins.ExtensionNode
n int /// The index. ///
return Mono.Addins.ExtensionNode
        public ExtensionNode this[int n]
        {
            get {
                if (list == null)
                    throw new System.IndexOutOfRangeException ();
                else
                    return (ExtensionNode) list [n];
            }
        }

Same methods

ExtensionNodeList::this ( string id ) : Mono.Addins.ExtensionNode