Beispiel #1
0
 public GmailList.Builder SetList(int index, GmailInfo value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     this.result.list_[index] = value;
     return(this);
 }
Beispiel #2
0
 public GmailList.Builder AddList(GmailInfo value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     this.result.list_.Add(value);
     return(this);
 }