Пример #1
0
 public KVStatOpLog.Builder SetList(int index, KVStatItem.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.list_[index] = builderForValue.Build();
     return(this);
 }
Пример #2
0
 public KVStatOpLog.Builder AddList(KVStatItem.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.list_.Add(builderForValue.Build());
     return(this);
 }