public CommentDescriptionAttribute(string aName)
 {
     Name              = aName;
     Abbreviation      = "Manual";
     Category          = CommentCategory.Other;
     WriterMistakeType = WriterMistakeType.Unknown;
 }
 public CommentDescriptionAttribute(string aName, string aAbbreviation, CommentCategory aCategory)
 {
     Name              = aName;
     Abbreviation      = aAbbreviation;
     Category          = aCategory;
     WriterMistakeType = WriterMistakeType.Unknown;
 }