Class Arinc424Collection<T>
Reference type designed for ARINC 424 records inherited from IList
Inheritance
Arinc424Collection<T>
Assembly: FpAssistantCoreScl.dll
Syntax
public class Arinc424Collection<T> : IList<T>, ICollection<T>, IEnumerable<T>, IEnumerable
Type Parameters
Constructors
View Source
Arinc424Collection()
Declaration
public Arinc424Collection()
Properties
View Source
Count
Declaration
public int Count { get; }
Property Value
View Source
IsReadOnly
Declaration
public bool IsReadOnly { get; }
Property Value
View Source
this[int]
Declaration
public T this[int index] { get; set; }
Parameters
Type |
Name |
Description |
int |
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
View Source
CopyTo(T[], int)
Declaration
public void CopyTo(T[] array, int arrayIndex)
Parameters
Type |
Name |
Description |
T[] |
array |
|
int |
arrayIndex |
|
View Source
GetEnumerator()
Declaration
public IEnumerator<T> GetEnumerator()
Returns
View Source
IndexOf(T)
Declaration
public int IndexOf(T item)
Parameters
Type |
Name |
Description |
T |
item |
|
Returns
View Source
Insert(int, T)
Declaration
public void Insert(int index, T item)
Parameters
Type |
Name |
Description |
int |
index |
|
T |
item |
|
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
Remove(T)
Declaration
public bool Remove(T item)
Parameters
Type |
Name |
Description |
T |
item |
|
Returns
View Source
RemoveAt(int)
Declaration
public void RemoveAt(int index)
Parameters
Type |
Name |
Description |
int |
index |
|
Implements