[]
        
(Showing Draft Content)

C1.DataCollection.C1DynamicList-1.GetItems

GetItems Method

GetItems(bool, int?, int?)

Returns the items in the list.

Declaration
public IEnumerable<Tuple<int, T?>> GetItems(bool onlyNonNullItems = false, int? from = null, int? to = null)
Parameters
Type Name Description
bool onlyNonNullItems

Only return those items that aren't null. Passing this parameter to true is convenient for huge lists having mostly nulls.

int? from

The starting index to return items.

int? to

The last index to return items.

Returns
Type Description
IEnumerable<Tuple<int, T>>