public object Clone() { BooruUserList cList = new BooruUserList(); this.ForEach(x => cList.Add(x.Clone() as BooruUser)); return(cList); }
public static BooruUserList FromReader(ReaderWriter Reader) { uint count = Reader.ReadUInt(); BooruUserList bUserList = new BooruUserList(); for (uint i = 0; i < count; i++) { bUserList.Add(BooruUser.FromReader(Reader)); } return(bUserList); }