This documentation is archived and is not being maintained.
IList.Clear Method
.NET Framework 1.1
When implemented by a class, removes all items from the IList.
[Visual Basic] Sub Clear() [C#] void Clear(); [C++] void Clear(); [JScript] function Clear();
Exceptions
| Exception Type | Condition |
|---|---|
| NotSupportedException | The IList is read-only. |
Remarks
Implementations of this method can vary in how they handle the ICollection.Count and the capacity of a collection. Typically, the count is set to zero. The capacity can be set to zero or a default value, or it can remain unchanged.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework, Common Language Infrastructure (CLI) Standard
See Also
IList Interface | IList Members | System.Collections Namespace
Show: