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