This class contains the array utility functions.
Declaration Syntax| C# | Visual Basic | Visual C++ |
public static class ArrayUtils
Public NotInheritable Class ArrayUtils
public ref class ArrayUtils abstract sealed
Members| All Members | Methods | ||||
| Icon | Member | Description |
|---|---|---|
![]() ![]() | 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)


