/// <summary>
 /// Initializes a new instance of the SuppressStyleCopQuickFix class that can handle <see cref="StyleCopHighlightingHint"/> .
 /// </summary>
 /// <param name="highlight">
 /// <see cref="StyleCopHighlightingHint"/> that has been detected. 
 /// </param>
 public SuppressStyleCopQuickFix(StyleCopHighlightingHint highlight)
     : this(highlight, true)
 {
 }
 /// <summary>
 /// Initializes a new instance of the SA1026QuickFix class that can handle
 /// <see cref="StyleCopHighlightingHint"/>.
 /// </summary>
 /// <param name="highlight">
 /// <see cref="StyleCopHighlightingHint"/>that has been detected.
 /// </param>
 public SA1026QuickFix(StyleCopHighlightingHint highlight)
     : base(highlight)
 {
 }
 /// <summary>
 /// Initializes a new instance of the StyleCopQuickFixBase class that can handle <see cref="StyleCopHighlightingHint"/> .
 /// </summary>
 /// <param name="highlight">
 /// <see cref="StyleCopHighlightingHint"/> that has been detected. 
 /// </param>
 protected StyleCopQuickFixBase(StyleCopHighlightingHint highlight)
     : this(highlight, true)
 {
 }