ICommentAuthorCollection

ICommentAuthorCollection interface

Represents a collection of comment authors.

public interface ICommentAuthorCollection : IGenericCollection<ICommentAuthor>

Properties

NameDescription
Item { get; }Gets the element at the specified index. Read-only ICommentAuthor.

Methods

NameDescription
AddAuthor(string, string)Add new author at the end of a collection.
Clear()Removes all authors from a collection.
FindByName(string)Find author in a collection by name.
FindByNameAndInitials(string, string)Find author in a collection by name and initials.
Remove(ICommentAuthor)Removes the first occurrence of the specified author in a collection.
RemoveAt(int)Removes the author at the specified index of the collection.
ToArray()Creates and returns an array with all authors.

See Also