namespace Semmle.Extraction.CSharp { /// /// Describes the relationship between a comment and a program element. /// public enum CommentBinding { Parent, // The parent element of a comment Best, // The most likely element associated with a comment Before, // The element before the comment After // The element after the comment }; }