public PluginKeyList.Builder SetList(int index, PluginKey value) { ThrowHelper.ThrowIfNull(value, "value"); this.PrepareBuilder(); this.result.list_[index] = value; return(this); }
public PluginKeyList.Builder AddList(PluginKey value) { ThrowHelper.ThrowIfNull(value, "value"); this.PrepareBuilder(); this.result.list_.Add(value); return(this); }