ArraySlice<T> Operators and Type Conversions

Operators

Addition(ArraySlice<T>, Int32) Returns an array slice starting at the specified index.
Decrement(ArraySlice<T>) Returns an array slice starting just before the first element in the slice.
Equality(ArraySlice<T>, ArraySlice<T>) Checks whether two array slices are equal.
Implicit(T[] to ArraySlice<T>) Implicitly converts a .NET array to an array slice.
Increment(ArraySlice<T>) Returns an array slice starting from the second element in the slice.
Inequality(ArraySlice<T>, ArraySlice<T>) Checks whether two array slices are not equal.

See Also