Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Extension method: T[] Remove<T>(this T[], int, int)

Declaration

public static T[] Remove<T>(
    this T[] array,
    int startIndex,
    int length
)

Summary

Similar to string.Remove(int, int), but for arrays. Returns a new array containing everything except the length items starting from the specified startIndex.

Generic type parameters

TThis type parameter is not documented.

Remarks

Returns a new copy of the array even if length is 0.