public ContentValidator(string[] content)
 {
     this.Content = ContentFilter.NoCommentsContent(content);
     if (content.Length == 0)
     {
         throw new Exception("File contains comments only.");
     }
 }