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