[]
An array of objects
Class
CompareDelegate
A type that represents a reference to a method with a parameter list and return type
CompareFieldDelegate
A type that represents a reference to a method with a parameter list and return type
FindDelegate
A type that represents a reference to a method with a parameter list and return type
Method
public
bool
Array
.
Contains
(
value
)
Returns true if the element is present in the container
public
object
Array
.
FindCount
(
delegate
bool
FindDelegate
(
value
)
predicate
,
int
maxcount
=
null
)
Find the number of matching items
public
int
Array
.
FindElementIndex
(
value
)
Returns the index of the first matching element (-1 if none)
public
Array
.
FindFirst
(
delegate
bool
FindDelegate
(
value
)
predicate
)
Returns the first matching element or null if not found
public
int
Array
.
FindFirstIndex
(
delegate
bool
FindDelegate
(
value
)
predicate
)
Returns the index of first matching element or -1 if no match
public
object
Array
.
FindIndex
(
delegate
bool
FindDelegate
(
value
)
predicate
,
int
maxcount
=
null
)
Returns a range list of matching elements
public
Array
.
FindMax
Returns the maximum value or null
public
Array
.
FindMin
Returns the minimum value or null
public
[]
Array
.
FindSlice
(
delegate
bool
FindDelegate
(
value
)
predicate
,
int
maxcount
=
null
)
Returns an array comprising matching elements
public
Array
.
FirstElement
Returns the first element or null
public
Attribute
Array
.
GetEachType
Get the iterated type
public
[]
Array
.
Insert
(
range
,
value
)
Return an array that has the specified elements inserted
public
Array
.
LastElement
Returns the last element or null
public
[]
Array
.
Remove
(
range
)
Return an array that has the element range deleted
public
[]
Array
.
Reverse
Return an array with the elements in reverse order
public
[]
Array
.
Revise
(
range
,
revision
)
Revise an element range of a list
public
[]
Array
.
Slice
(
range
)
Return an array with elements in the specified range
public
[]
Array
.
Substitute
(
range
,
value
)
Return an array that has the specified range of elements replaced with the specified value
public
[]
Array
.
ToArray
Returns the current values to an array
public
[]
Array
.
ToSortedArray
(
bool
descending
=
false
,
delegate
int
CompareDelegate
(
v1
,
v2
)
comparedelegate
=
null
)
Returns a new array in sorted order
public
[]
Array
.
ToSortedArrayField
(
bool
descending
,
delegate
CompareFieldDelegate
(
value
)
comparedelegatefield
)
Returns a new array in sorted order