コード例 #1
0
 public HxlAssemblyCollection(IEnumerable <HxlAssembly> items)
 {
     if (items != null)
     {
         Items.AddMany(items);
     }
 }
コード例 #2
0
 public HxlNamespaceCollection(IEnumerable <HxlNamespace> other)
 {
     if (other != null)
     {
         Items.AddMany(other);
     }
 }
コード例 #3
0
 public DomNodeFactoryCollection(IEnumerable <IDomNodeFactory> other)
 {
     if (other != null)
     {
         Items.AddMany(other);
     }
 }