Exemple #1
0
 private async Task StartOutput()
 {
     if (inputModel.OutputType == OutputType.Binary)
     {
         await outputService.ArrayToTableString(fileOutput.Cast <bool>().ToArray());
     }
     if (inputModel.OutputType == OutputType.Byte)
     {
         await outputService.ArrayToTableString(fileOutput.Cast <byte>().ToArray());
     }
 }