Contains

WorkingTimeCollection.Contains method

Checks if the specified element is in the List. Performs a linear O(n) search.

public bool Contains(WorkingTime item)
ParameterTypeDescription
itemWorkingTimethe specified item.

Return Value

True, if specified element found in the list, false otherwise.

See Also