Devolutions Utils reference library
ArrayUtils Class
NamespacesDevolutions.UtilsArrayUtils
This class contains the array utility functions.
Declaration Syntax
C#Visual BasicVisual C++
public static class ArrayUtils
Public NotInheritable Class ArrayUtils
public ref class ArrayUtils abstract sealed
Members
All MembersMethods



IconMemberDescription
AddAtBeginingToArray<(Of <(T>)>)(array<T>[]()[], T)
Insert an item at the begining of an array. A new array is returned.

AddRangeToArray<(Of <(T>)>)(array<T>[]()[], array<T>[]()[])
Add a range of item in an array. A new array is returned.

AddToArray<(Of <(T>)>)(array<T>[]()[], T)
Add an item in an array. A new array is returned.

IsNullOrEmpty(Array)
Check if the array is null or empty.

Remove<(Of <(T>)>)(array<T>[]()[], T)
Remove an item from an array. A new array is created and no error is raised if the item does't exists.

SortStringArray(array<String>[]()[])
Sort a string array (invariant culture)

Inheritance Hierarchy
Object
ArrayUtils

Assembly: Devolutions.Utils (Module: Devolutions.Utils)