ICSharpCode.NRefactory.CSharp.CSharpOutputVisitor.CSharpOutputVisitor C# (CSharp) Method

CSharpOutputVisitor() public method

public CSharpOutputVisitor ( TextWriter textWriter, CSharpFormattingOptions formattingPolicy ) : System
textWriter System.IO.TextWriter
formattingPolicy CSharpFormattingOptions
return System
		public CSharpOutputVisitor (TextWriter textWriter, CSharpFormattingOptions formattingPolicy)
		{
			if (textWriter == null) {
				throw new ArgumentNullException ("textWriter");
			}
			if (formattingPolicy == null) {
				throw new ArgumentNullException ("formattingPolicy");
			}
			this.writer = TokenWriter.Create(textWriter);
			this.policy = formattingPolicy;
		}
		

Same methods

CSharpOutputVisitor::CSharpOutputVisitor ( TokenWriter writer, CSharpFormattingOptions formattingPolicy ) : System
CSharpOutputVisitor