Ejemplo n.º 1
0
 public InflateResult Append(InflateResult other)
 {
     _Errors.AddRange(other.Errors);
     return(this);
 }
Ejemplo n.º 2
0
 public InflateResult Append(string prefix, InflateResult other)
 {
     _Errors.AddRange(other.Errors.Select((cur) => prefix + cur));
     return(this);
 }