コード例 #1
0
 public SyncKey.Builder SetKey(int index, KeyVal.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.key_[index] = builderForValue.Build();
     return(this);
 }
コード例 #2
0
 public SyncKey.Builder AddKey(KeyVal.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.key_.Add(builderForValue.Build());
     return(this);
 }