internal void FillAuthors(TNoteAuthorList Authors) { for (int i = 0; i < Count; i++) { this[i].FillAuthors(Authors); } }
public TNoteAuthorList GetAuthors() { TNoteAuthorList Result = new TNoteAuthorList(); for (int i = 0; i < Count; i++) { this[i].FillAuthors(Result); } return(Result); }
internal void FillAuthors(TNoteAuthorList Authors) { Authors.AddAuthor(GetAuthor()); }