WriteTo() public method

public WriteTo ( TextWriter writer ) : void
writer System.IO.TextWriter
return void
コード例 #1
0
ファイル: BaseView.cs プロジェクト: marto83/Appia
 // This method is called by generated code and needs to stay in sync with the parser
 public static void WriteTo(TextWriter writer, HelperResult content)
 {
     if (content != null)
     {
         content.WriteTo(writer);
     }
 }