Ejemplo n.º 1
0
 internal static void AddItem(ref CssAttrSelector @this, CssAttrSelector item)
 {
     while (@this != null)
     {
         @this = @this.mNext;
     }
     @this = item;
 }
Ejemplo n.º 2
0
 internal static IEnumerable <CssAttrSelector> TraverseList(CssAttrSelector @this)
 {
     return(@this.TraverseList(i => i.mNext));
 }
Ejemplo n.º 3
0
 internal void AddAttributeInternal(CssAttrSelector aAttribute)
 {
     CssAttrSelector.AddItem(ref mAttrList, aAttribute);
 }