()
| 87 | } |
| 88 | |
| 89 | private static void AwaitExitUserCmd() |
| 90 | { |
| 91 | var command = ""; |
| 92 | do |
| 93 | { |
| 94 | Console.Write("Type 'exit' to stop: "); |
| 95 | command = Console.ReadLine(); |
| 96 | } while (!command.ToLower().Equals("exit")); |
| 97 | } |
| 98 | } |
| 99 | } |
nothing calls this directly
no outgoing calls
no test coverage detected