ICollection Interface
Defines size, enumerators, and synchronization methods for all collections.
Namespace: Microsoft.VisualStudio.VsWizard
Assembly: Microsoft.VisualStudio.VsWizard (in Microsoft.VisualStudio.VsWizard.dll)
Syntax
'Declaration
<GuidAttribute("CCD31371-6102-4AF9-8952-BD96C1ED9574")> _
Public Interface ICollection _
Inherits IEnumerable
[GuidAttribute("CCD31371-6102-4AF9-8952-BD96C1ED9574")]
public interface ICollection : IEnumerable
[GuidAttribute(L"CCD31371-6102-4AF9-8952-BD96C1ED9574")]
public interface class ICollection : IEnumerable
[<GuidAttribute("CCD31371-6102-4AF9-8952-BD96C1ED9574")>]
type ICollection =
interface
interface IEnumerable
end
public interface ICollection extends IEnumerable
The ICollection type exposes the following members.
Properties
Name | Description | |
---|---|---|
Count | When implemented by a class, gets the number of elements contained in the ICollection. |
Top
Methods
Name | Description | |
---|---|---|
AddAt | Adds an item to a collection at a position. | |
AddItem | Adds an item to a collection. | |
GetEnumerator | Gets a list of items in a collection. | |
item | Gets an item from a collection. |
Top