﻿<?xml version="1.0" encoding="utf-8"?><Type Name="IList&lt;T&gt;" FullName="System.Collections.Generic.IList&lt;T&gt;"><TypeSignature Language="C#" Value="public interface IList&lt;T&gt; : System.Collections.Generic.ICollection&lt;T&gt;, System.Collections.Generic.IEnumerable&lt;T&gt;" /><TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract IList`1&lt;T&gt; implements class System.Collections.Generic.ICollection`1&lt;!T&gt;, class System.Collections.Generic.IEnumerable`1&lt;!T&gt;, class System.Collections.IEnumerable" /><AssemblyInfo><AssemblyName>mscorlib</AssemblyName><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><TypeParameters><TypeParameter Name="T" /></TypeParameters><Interfaces><Interface><InterfaceName>System.Collections.Generic.ICollection&lt;T&gt;</InterfaceName></Interface><Interface><InterfaceName>System.Collections.Generic.IEnumerable&lt;T&gt;</InterfaceName></Interface></Interfaces><Docs><typeparam name="T">To be added.</typeparam><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Collections.Generic.IList`1" /> generic interface is a descendant of the <see cref="T:System.Collections.Generic.ICollection`1" /> generic interface and is the base interface of all generic lists.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Represents a collection of objects that can be individually accessed by index.</para></summary></Docs><Members><Member MemberName="IndexOf"><MemberSignature Language="C#" Value="public int IndexOf (T item);" /><MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int32 IndexOf(!T item) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Parameters><Parameter Name="item" Type="T" /></Parameters><Docs><param name="item">To be added.</param><summary><para>Determines the index of a specific item in the current instance.</para></summary><returns>The index of <paramref name="value" /> if found in the current instance; otherwise, -1.</returns><remarks><para>Implementations can vary in how they determine equality of objects; for example, <see cref="T:System.Collections.Generic.List&lt;T&gt;" />  uses the default comparer, whereas, <see cref="T:System.Collections.Generic.Dictionary&lt;T,U&gt;" /> allows the user to specify the <see cref="T:System.Collections.Generic.IComparer&lt;T&gt;" /> implementation to use for comparing keys.</para></remarks><since version=".NET 2.0" /></Docs></Member><Member MemberName="Insert"><MemberSignature Language="C#" Value="public void Insert (int index, T item);" /><MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Insert(int32 index, !T item) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="index" Type="System.Int32" /><Parameter Name="item" Type="T" /></Parameters><Docs><param name="index">A <see cref="System.Int32" /> that specifies the zero-based index at which value is inserted.</param><param name="item">To be added.</param><summary><para>Inserts an item into the current instance at the specified position.</para></summary><remarks><para>In collections of contiguous elements, such as lists, the elements that follow the insertion point have indices one more than previously, to accommodate the new element. If the collection is indexed, the indexes of the elements that are moved are also updated.</para><para><block subset="none" type="behaviors"><para>If <paramref name="index" /> equals the number of items in the <see cref="System.Collections.Generic.IList&lt;T&gt;" />, then value is required to be appended to the end of the current instance.</para></block></para></remarks><since version=".NET 2.0" /><exception cref="T:System.ArgumentOutOfRangeException"><para><paramref name="index" /> is not a valid index in the current instance (i.e. is negative or greater than the number of elements in the current instance).</para></exception><exception cref="T:System.NotSupportedException"><para>The current instance is read-only.</para></exception></Docs></Member><Member MemberName="Item"><MemberSignature Language="C#" Value="public T this[int index] { get; set; }" /><MemberSignature Language="ILAsm" Value=".property instance !T Item(int32)" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>T</ReturnType></ReturnValue><Parameters><Parameter Name="index" Type="System.Int32" /></Parameters><Docs><param name="index">The zero-based index of the element to get or set.</param><summary><para>Gets or sets the element at the specified index in the current instance.</para></summary><value><para>The element at the specified index in the current instance.</para></value><remarks><para>This property provides the ability to access a specific element in the collection by using some language-specific syntax.</para></remarks><since version=".NET 2.0" /><exception cref="T:System.ArgumentOutOfRangeException"><para><paramref name="index" /> is not a valid index in the current instance.</para></exception><exception cref="T:System.NotSupportedException"><para>The property is being set and the current instance is read-only.</para></exception></Docs></Member><Member MemberName="RemoveAt"><MemberSignature Language="C#" Value="public void RemoveAt (int index);" /><MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void RemoveAt(int32 index) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="index" Type="System.Int32" /></Parameters><Docs><since version=".NET 2.0" /><exception cref="T:System.ArgumentOutOfRangeException"><para><paramref name="index" /> is not a valid index in the current instance.</para></exception><exception cref="T:System.NotSupportedException"><para>The current instance is read-only.</para></exception><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>In collections of contiguous elements, such as lists, the elements that follow the removed element move up to occupy the vacated spot. If the collection is indexed, the indexes of the elements that are moved are also updated. This behavior does not apply to collections where elements are conceptually grouped into buckets, such as a hash table.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Removes the <see cref="T:System.Collections.Generic.IList`1" /> item at the specified index.</para></summary><param name="index"><attribution license="cc4" from="Microsoft" modified="false" />The zero-based index of the item to remove.</param></Docs></Member></Members></Type>