コード例 #1
0
ファイル: Element.cs プロジェクト: jamesfoster/dotless.js
 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);
 }