예제 #1
0
 public Element(Combinator combinator, string value)
 {
   Combinator = combinator ?? new Combinator("");
   Value = value.Trim();
 }
예제 #2
0
 public Element Element(Combinator combinator, string value)
 {
     return new Element(combinator, value);
 }