Esempio n. 1
0
        public object Clone()
        {
            BooruUserList cList = new BooruUserList();

            this.ForEach(x => cList.Add(x.Clone() as BooruUser));
            return(cList);
        }
Esempio n. 2
0
        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);
        }