public CompoundMeshDraft Add(CompoundMeshDraft compoundDraft) { if (compoundDraft == null) throw new ArgumentNullException(nameof(compoundDraft)); meshDrafts.AddRange(compoundDraft.meshDrafts); return this; }
public CompoundMeshDraft Add(CompoundMeshDraft compoundDraft) { if (compoundDraft == null) { throw new ArgumentNullException("compoundDraft"); } meshDrafts.AddRange(compoundDraft.meshDrafts); return(this); }