public void AppendBullet(DockyBullet bullet, string content)
 {
     _sb.AppendLine(string.Format("{0} {1}", ReflectionUtility.ToEnumString(bullet), content));
 }
 public void AppendHeader(DockyHeader header, string content)
 {
     _sb.AppendLine(string.Format("{0} {1}", ReflectionUtility.ToEnumString(header), content));
 }