Пример #1
0
 /// <summary>
 /// Append content at the beginning of the element
 /// </summary>
 public static HElement Prepend(this HElement element, params object[] content)
 {
     if (element != null)
     {
         element.InsertFirst(content);
     }
     return(element);
 }