示例#1
0
 public GetContactResponse.Builder SetContactList(int index, ModContact value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     this.result.contactList_[index] = value;
     return(this);
 }
示例#2
0
 public GetContactResponse.Builder AddContactList(ModContact value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     this.result.contactList_.Add(value);
     return(this);
 }