Get

Get<TValue>(int)

public TValue Get<TValue>(int index)

Exceptions

exceptioncondition
IndexOutOfRangeExceptionindex is less than 0; index equal to or greater than Count.
MedicalApiExceptionUnable to convert element value to the specified type.

See Also


Get<TValue>(Index)

public TValue Get<TValue>(Index index)

Exceptions

exceptioncondition
IndexOutOfRangeExceptionindex is less than 0; index equal to or greater than Count.
MedicalApiExceptionUnable to convert element value to target type.

See Also


Get(int)

Gets the element value stored at the given position.

public T Get(int index = 0)

Return Value

The T element value.

Exceptions

exceptioncondition
IndexOutOfRangeExceptionindex is less than 0 or index is equal to or greater than Count.

See Also