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