Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Name and ParametersDescriptionReturn TypeUsage Example
First()Gets first item from the collectionString

First(string operator, string value, bool ignoreCase)

Gets first matching item from the collection using given operator. See list of valid operators below.

String

IsEmpty()Returns true if there are no items in the collectionBoolean

Item(integer index)Gets an item in the collection by zero-based index numberString

Last()Gets last item from the collectionString

Last(string operator, string value, bool ignoreCase)Gets last matching item from the collection using given operator. See list of valid operators below.String

Where(string operator, string value, bool ignoreCase)Gets matching items from the collection using given operator. See list of valid operators below.String Collection






...