Class UserCollection

UserCollection class

User collection.

public class UserCollection : Collection<User>

Properties

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

Methods

NameDescription
Add(User)Add the User object in the collection.
BinarySearch(User)
BinarySearch(User, IComparer<User>)
BinarySearch(int, int, User, IComparer<User>)
Clear()
Contains(User)
CopyTo(User[])
CopyTo(User[], int)
CopyTo(int, User[], int, int)
Exists(Predicate<User>)
Find(Predicate<User>)
FindAll(Predicate<User>)
FindIndex(Predicate<User>)
FindIndex(int, Predicate<User>)
FindIndex(int, int, Predicate<User>)
FindLast(Predicate<User>)
FindLastIndex(Predicate<User>)
FindLastIndex(int, Predicate<User>)
FindLastIndex(int, int, Predicate<User>)
GetEnumerator()
GetUser(int)Gets the element at the specified ID.
GetUser(string)Gets the element at the specified ID.
IndexOf(User)
IndexOf(User, int)
IndexOf(User, int, int)
LastIndexOf(User)
LastIndexOf(User, int)
LastIndexOf(User, int, int)
Remove(User)Remove the User object from the collection.
RemoveAt(int)

See Also