ReferenceArray
Description:
An array that contains reference objects.
An array that contains reference objects.
public class ReferenceArray : APIObject,
IEnumerable
| Name | Return Type | Description | Inherited From |
|---|---|---|---|
| ReferenceArray() | None | Initializes a new instance of the class |
| Name | Return Type | Description | Inherited From |
|---|---|---|---|
| Append(Reference) | None | Add the reference to the end of the array. | |
| Clear() | None | Removes every reference from the array, rendering it empty. | |
| ForwardIterator() | ReferenceArrayIterator | Retrieve a forward moving iterator to the array. | |
| GetEnumerator() | IEnumerator | Retrieve a forward moving iterator to the array. | |
| Insert(Reference, Int32) | None | Insert the specified reference into the array. | |
| ReverseIterator() | ReferenceArrayIterator | Retrieve a backward moving iterator to the array. | |
| Dispose() | None | Causes the object to release immediately any resources it may be utilizing. | APIObject |
| Name | Return Type | Description | Inherited From |
|---|---|---|---|
| IsEmpty | bool | Test to see if the array is empty. | |
| Item | Reference | Gets or sets a reference at a specified index within the array. | |
| Size | int | Returns the number of references that are in the array. | |
| IsReadOnly | bool | Identifies if the object is read-only or modifiable. | APIObject |