コード例 #1
0
 public Avatar.Builder AddBlueprints(Blueprint.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.blueprints_.Add(builderForValue.Build());
     return(this);
 }
コード例 #2
0
 public Avatar.Builder SetBlueprints(int index, Blueprint.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.blueprints_.set_Item(index, builderForValue.Build());
     return(this);
 }