Пример #1
0
 public SendMsgRequest.Builder SetList(int index, MicroMsgRequest value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     this.result.list_[index] = value;
     return(this);
 }
Пример #2
0
 public SendMsgRequest.Builder AddList(MicroMsgRequest value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     this.result.list_.Add(value);
     return(this);
 }