Table of Contents

Class ArrayExtensions

Namespace
Songhay.Extensions
Assembly
SonghayCore.dll

Extensions of Array.

public static class ArrayExtensions
Inheritance
ArrayExtensions
Inherited Members

Methods

Next<T>(Array?, T?)

Gets the next item in the specified Array.

public static T? Next<T>(this Array? array, T? item)

Parameters

array Array

The array.

item T

The item.

Returns

T

Type Parameters

T

The array Type.

Previous<T>(Array?, T?)

Gets the previous item in the specified Array.

public static T? Previous<T>(this Array? array, T? item)

Parameters

array Array

The array.

item T

The item.

Returns

T

Type Parameters

T

The array Type.