Esempio n. 1
0
 public KVStatOpLog.Builder SetList(int index, KVStatItem value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     this.result.list_[index] = value;
     return(this);
 }
Esempio n. 2
0
 public KVStatOpLog.Builder AddList(KVStatItem value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     this.result.list_.Add(value);
     return(this);
 }