public DelChatRoomMemberResponse.Builder SetMemberList(int index, DelMemberResp.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.memberList_[index] = builderForValue.Build();
     return(this);
 }
 public DelChatRoomMemberResponse.Builder AddMemberList(DelMemberResp.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.memberList_.Add(builderForValue.Build());
     return(this);
 }