public VisualBasicAssemblyAttributeWriter(ILanguage language, IFormatter formatter, IExceptionFormatter exceptionFormatter, bool writeExceptionsAsComments)
			: base(language, exceptionFormatter, writeExceptionsAsComments)
        {
			this.writer = new VisualBasicAssemblyAttributeInternalWriter(language, formatter, exceptionFormatter, writeExceptionsAsComments);
        }
コード例 #2
0
 public VisualBasicAssemblyAttributeWriter(ILanguage language, IFormatter formatter, IExceptionFormatter exceptionFormatter, bool writeExceptionsAsComments)
     : base(language, exceptionFormatter, writeExceptionsAsComments)
 {
     this.writer = new VisualBasicAssemblyAttributeInternalWriter(language, formatter, exceptionFormatter, writeExceptionsAsComments);
     this.writer.ExceptionThrown += OnExceptionThrown;
 }
 public VisualBasicAssemblyAttributeWriter(ILanguage language, IFormatter formatter, IExceptionFormatter exceptionFormatter, IWriterSettings settings)
     : base(language, exceptionFormatter, settings)
 {
     this.writer = new VisualBasicAssemblyAttributeInternalWriter(language, formatter, exceptionFormatter, settings);
     this.writer.ExceptionThrown += OnExceptionThrown;
 }