Share via


DdmArrayProperty.RemoveAt Method (Int32)

 

Removes the IList<T> item at the specified index.

Namespace:   Microsoft.ConfigurationManagement.Messaging.Messages.Server
Assembly:  Microsoft.ConfigurationManagement.Messaging (in Microsoft.ConfigurationManagement.Messaging.dll)

Syntax

public void RemoveAt(
    int index
)
public:
virtual void RemoveAt(
    int index
) sealed
Public Sub RemoveAt (
    index As Integer
)

Parameters

  • index
    Type: System.Int32

    The zero-based index of the item to remove.

Implements

IList<T>.RemoveAt(Int32)

Exceptions

Exception Condition
ArgumentOutOfRangeException

index is not a valid index in the IList<T>.

NotSupportedException

The IList<T> is read-only.

See Also

DdmArrayProperty Class
Microsoft.ConfigurationManagement.Messaging.Messages.Server Namespace

Return to top