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
ArrayThe array.
item
TThe 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
ArrayThe array.
item
TThe item.
Returns
- T
Type Parameters
T
The array Type.