Пример #1
0
 public CSharpAssemblyAttributeWriter(ILanguage language, IFormatter formatter, IExceptionFormatter exceptionFormatter, bool writeExceptionsAsComments)
     : base(language, exceptionFormatter, writeExceptionsAsComments)
 {
     this.writer = new CSharpAssemblyAttributeInternalWriter(language, formatter, exceptionFormatter, writeExceptionsAsComments);
     this.writer.ExceptionThrown += OnExceptionThrown;
 }
 public CSharpAssemblyAttributeWriter(ILanguage language, IFormatter formatter, IExceptionFormatter exceptionFormatter, IWriterSettings settings)
     : base(language, exceptionFormatter, settings)
 {
     this.writer = new CSharpAssemblyAttributeInternalWriter(language, formatter, exceptionFormatter, settings);
     this.writer.ExceptionThrown += OnExceptionThrown;
 }
 public CSharpAssemblyAttributeWriter(ILanguage language, IFormatter formatter, IExceptionFormatter exceptionFormatter, IWriterSettings settings)
     : base(language, exceptionFormatter, settings)
 {
     this.writer = new CSharpAssemblyAttributeInternalWriter(language, formatter, exceptionFormatter, settings);
     this.writer.ExceptionThrown += OnExceptionThrown;
 }
		public CSharpAssemblyAttributeWriter(ILanguage language, IFormatter formatter, IExceptionFormatter exceptionFormatter, bool writeExceptionsAsComments)
			: base(language, exceptionFormatter, writeExceptionsAsComments)
        {
			this.writer = new CSharpAssemblyAttributeInternalWriter(language, formatter, exceptionFormatter, writeExceptionsAsComments);
        }