A data array.
Inheritance Hierarchy Namespace: Demo3D.PLC.CommsAssembly: PLC (in PLC.dll) Version: 19.00.00
Syntaxpublic sealed class DataArray<T> : ObservableCollection<T>,
IListExt, IList, ICollection, IEnumerable, IConvertible
Type Parameters
- T
- The array element type.
The DataArrayT type exposes the following members.
Constructors
Methods| | Name | Description |
|---|
 | BinarySearch |
Searches the entire sorted list for the specified value using the specified comparer.
|
  | CreateInstance(Int32) |
Creates an array of the specified lengths.
|
  | CreateInstance(Int32) |
Creates an array of the specified lengths.
|
  | CreateInstance(Int32, Int32) |
Creates an array of the specified lengths.
|
  | CreateInstance(Int32, Int32, Int32) |
Creates an array of the specified lengths.
|
 | Reverse |
Reverse the order of the elements in the list.
|
 | Set(Int32, IListT) |
Sets elements in the array, expanding the array if necessary.
|
 | Set(Int32, IList) |
Sets elements in the array, expanding the array if necessary.
|
 | Set(Int32, IListT, Int32, Int32) |
Sets elements in the array, expanding the array if necessary.
|
 | Set(Int32, IList, Int32, Int32) |
Sets elements in the array, expanding the array if necessary.
|
 | Sort |
Sort the elements in the list using the default comparer.
|
 | Sort(ComparisonT) |
Sort the elements in the list using the specified comparison.
|
 | Sort(IComparerT) |
Sort the elements in the list using the specified comparer.
|
 | ToArray |
Copies the elements to a new array.
|
Top
Events| | Name | Description |
|---|
 | ItemsChanged |
Occurs when item values change.
Only raised for SetItem or Set operations for elements added or replaced.
|
 | ItemValuesChanged |
Occurs when item values change.
Only raised for SetItem or Set operations for elements added or replaced.
|
Top
See Also