/// <summary>
 /// Initializes a new instance of the <see cref="DocumentationConstructorCodeFixProvider"/> class.
 /// </summary>
 public DocumentationConstructorCodeFixProvider()
 {
     this._commentTextFactory = new CommentTextFactory(
         new AccessLevelService());
     this._commentNodeFactory = new CommentNodeFactory(
         new CommentTextFactory(new AccessLevelService()));
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DocumentationMemberAnalyser"/> class.
 /// </summary>
 public DocumentationMemberAnalyser()
 {
     this._commentTextFactory = new CommentTextFactory(new AccessLevelService());
 }