Exemple #1
0
 protected void Print(string text)
 {
     if (AddNewLinesToOutput)
     {
         _io.Output(text + Environment.NewLine);
     }
     else
     {
         _io.Output(text);
     }
 }