public KVStatOpLog.Builder SetList(int index, KVStatItem.Builder builderForValue) { ThrowHelper.ThrowIfNull(builderForValue, "builderForValue"); this.PrepareBuilder(); this.result.list_[index] = builderForValue.Build(); return(this); }
public KVStatOpLog.Builder AddList(KVStatItem.Builder builderForValue) { ThrowHelper.ThrowIfNull(builderForValue, "builderForValue"); this.PrepareBuilder(); this.result.list_.Add(builderForValue.Build()); return(this); }