예제 #1
0
        public bool Start(InputModel inputModel)
        {
            input        = inputModel;
            containError = false;

            stream = new ReportableStream();
            writer = new FormattableStreamWriter(stream.Stream, Encoding.UTF8, 1024, true);
            return(true);
        }
예제 #2
0
 public Item Finish()
 {
     writer?.Dispose();
     writer = null;
     return(Item.Empty);
 }