Exemplo n.º 1
0
Arquivo: Tag.cs Projeto: kokudori/Y3
        public Tag(Element element, IReadOnlyCollection<ITag> inners)
        {
            if (element == null)
                throw new ArgumentNullException("element");
            if (inners == null)
                throw new ArgumentNullException("inners");

            Element = element;
            Inners = inners;
        }
Exemplo n.º 2
0
Arquivo: Tag.cs Projeto: kokudori/Y3
 public Tag(Element element)
     : this(element, new ITag[0])
 {
 }