IPlcArray<T, TElement> Members

Namespace: IPS7Lnk.Advanced
Assemblies: IPS7LnkNet.Advanced.dll, IPS7LnkNet.Advanced.dll
The IPlcArray<T, t> interface defines the following members.

Item[Int32]

Gets the element at the specified index.

C#

T this[int index] { get; }


Property Value

T

The element at the specified index.



Exceptions

ArgumentOutOfRangeException

The index is less than zero or index is equal to or greater than Length.

GetElement(Int32)

Retrieves the TElement at the specified index.

C#

TElement GetElement(int index)


Parameters

index Int32

The zero-based index of the element to get.


Returns

t

The TElement at the specified index.



Exceptions

ArgumentOutOfRangeException

The index is less than zero or index is equal to or greater than Length.