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

WriteMethodBody() protected method

protected WriteMethodBody ( BlockStatement body, BraceStyle style ) : void
body BlockStatement
style BraceStyle
return void
		protected virtual void WriteMethodBody(BlockStatement body, BraceStyle style)
		{
			if (body.IsNull) {
				Semicolon();
			} else {
				WriteBlock(body, style);
				NewLine();
			}
		}
		
CSharpOutputVisitor