Class Arinc424Collection<T>
Reference type designed for ARINC 424 records inherited from IList
Inheritance
System.Object
Arinc424Collection<T>
Assembly: FpAssistantCoreScl.dll
Syntax
public class Arinc424Collection<T> : IList<T>
Type Parameters
Constructors
View Source
Arinc424Collection()
Declaration
public Arinc424Collection()
Properties
View Source
Count
Declaration
public int Count { get; }
Property Value
Type |
Description |
System.Int32 |
|
View Source
IsReadOnly
Declaration
public bool IsReadOnly { get; }
Property Value
Type |
Description |
System.Boolean |
|
View Source
Item[Int32]
Declaration
public T this[int index] { get; set; }
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Property Value
Methods
View Source
Add(T)
Declaration
Parameters
Type |
Name |
Description |
T |
item |
|
View Source
Clear()
Declaration
View Source
Contains(T)
Declaration
public bool Contains(T item)
Parameters
Type |
Name |
Description |
T |
item |
|
Returns
Type |
Description |
System.Boolean |
|
View Source
CopyTo(T[], Int32)
Declaration
public void CopyTo(T[] array, int arrayIndex)
Parameters
Type |
Name |
Description |
T[] |
array |
|
System.Int32 |
arrayIndex |
|
View Source
GetEnumerator()
Declaration
public IEnumerator<T> GetEnumerator()
Returns
Type |
Description |
IEnumerator<T> |
|
View Source
IndexOf(T)
Declaration
public int IndexOf(T item)
Parameters
Type |
Name |
Description |
T |
item |
|
Returns
Type |
Description |
System.Int32 |
|
View Source
Insert(Int32, T)
Declaration
public void Insert(int index, T item)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
T |
item |
|
View Source
Remove(T)
Declaration
public bool Remove(T item)
Parameters
Type |
Name |
Description |
T |
item |
|
Returns
Type |
Description |
System.Boolean |
|
View Source
Remove(GeoCoordinateBasic, LinearDistance)
Remove items from list that are not with a radius of a coordinate
Declaration
public void Remove(GeoCoordinateBasic centrePoint, LinearDistance radius)
Parameters
Type |
Name |
Description |
GeoCoordinateBasic |
centrePoint |
Coordinate point to extend radius around from
|
LinearDistance |
radius |
distance from the center point to retain item in the list
|
View Source
RemoveAt(Int32)
Declaration
public void RemoveAt(int index)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|