Ejemplo n.º 1
0
 public Gmail()
 {
     this.LocalLabels    = new LocalLabelCollection();
     this.LocalMessages  = new LocalMessageCollection();
     this.LocalCalendars = new LocalCalendarCollection();
     this.LocalEvents    = new LocalEventCollection();
 }
Ejemplo n.º 2
0
        public LocalEventCollection Clone()
        {
            var r = new LocalEventCollection();

            foreach (var x in this)
            {
                r.Add(x);
            }
            return(r);
        }