Class IssueCollection

IssueCollection class

Issue collection.

public class IssueCollection : Collection<Issue>

Properties

NameDescription
Capacity { get; set; }
Count { get; }
Item { get; set; }

Methods

NameDescription
Add(Issue)Add the issue in the collection.
BinarySearch(Issue)
BinarySearch(Issue, IComparer<Issue>)
BinarySearch(int, int, Issue, IComparer<Issue>)
Clear()
Contains(Issue)
CopyTo(Issue[])
CopyTo(Issue[], int)
CopyTo(int, Issue[], int, int)
Exists(Predicate<Issue>)
Find(Predicate<Issue>)
FindAll(Predicate<Issue>)
FindIndex(Predicate<Issue>)
FindIndex(int, Predicate<Issue>)
FindIndex(int, int, Predicate<Issue>)
FindLast(Predicate<Issue>)
FindLastIndex(Predicate<Issue>)
FindLastIndex(int, Predicate<Issue>)
FindLastIndex(int, int, Predicate<Issue>)
GetEnumerator()
IndexOf(Issue)
IndexOf(Issue, int)
IndexOf(Issue, int, int)
LastIndexOf(Issue)
LastIndexOf(Issue, int)
LastIndexOf(Issue, int, int)
Remove(Issue)Remove the issue from the collection.
RemoveAt(int)

See Also