forked from scriptcs/scriptcs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExitCommand.cs
More file actions
41 lines (31 loc) · 1 KB
/
ExitCommand.cs
File metadata and controls
41 lines (31 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using ScriptCs.Contracts;
namespace ScriptCs.ReplCommands
{
public class ExitCommand : IReplCommand
{
private readonly IConsole _console;
public string Description => "Exits the REPL";
public string CommandName => "exit";
public ExitCommand(IConsole console)
{
Guard.AgainstNullArgument("console", console);
_console = console;
}
public object Execute(IRepl repl, object[] args)
{
Guard.AgainstNullArgument("repl", repl);
var response = string.Empty;
var responseIsValid = false;
while (!responseIsValid)
{
response = (_console.ReadLine("Are you sure you wish to exit? (y/n):") ?? string.Empty).ToLowerInvariant();
responseIsValid = response == "y" || response == "n";
}
if (response == "y")
{
repl.Terminate();
}
return null;
}
}
}