/// <summary>
        /// Create and add a line counter header object to the header objects of the log
        /// </summary>
        /// <param name="formatString"></param>
        /// <returns>The added header object</returns>
        public LtcLineCount AddLineCountHeader(string formatString)
        {
            var lineHeader = new LtcLineCount(this, formatString);

            _lineHeaders.Add(lineHeader);

            return(lineHeader);
        }
        /// <summary>
        /// Create and add a line counter header object to the header objects of the log
        /// </summary>
        /// <returns>The added header object</returns>
        public LtcLineCount AddLineCountHeader()
        {
            var lineHeader = new LtcLineCount(this);

            _lineHeaders.Add(lineHeader);

            return(lineHeader);
        }