RunspaceConfigurationEntryCollection<T>.RemoveItem Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
RemoveItem(Int32) |
Remove one item from the collection |
RemoveItem(Int32, Int32) |
Remove multiple items in the collection. |
RemoveItem(Int32)
Remove one item from the collection
public:
void RemoveItem(int index);
public:
void RemoveItem(int index);
void RemoveItem(int index);
public void RemoveItem (int index);
member this.RemoveItem : int -> unit
Public Sub RemoveItem (index As Integer)
Parameters
- index
- Int32
Exceptions
when index
is out of range.
Applies to
RemoveItem(Int32, Int32)
Remove multiple items in the collection.
public:
void RemoveItem(int index, int count);
public:
void RemoveItem(int index, int count);
void RemoveItem(int index, int count);
public void RemoveItem (int index, int count);
member this.RemoveItem : int * int -> unit
Public Sub RemoveItem (index As Integer, count As Integer)
Parameters
- index
- Int32
- count
- Int32
Exceptions
when index
is out of range.