protected virtual string GetMessage()
 {
     return(string.Format("Row {0}: The row value count ({1}) does not equal the head count ({2}).\n{3}\n{4}",
                          RowIndex,
                          CurrentValues.Count,
                          HeaderNames.Count,
                          string.Join(",", HeaderNames.ToArray()),
                          string.Join(",", CurrentValues.ToArray())));
 }