-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathecho.cs
More file actions
23 lines (21 loc) · 810 Bytes
/
echo.cs
File metadata and controls
23 lines (21 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System.IO;
using ILeoConsole;
using ILeoConsole.Plugin;
using ILeoConsole.Core;
namespace LeoConsole_ExamplePlugin {
public class Echo : ICommand {
public string Name { get { return "echo"; } }
public string Description { get { return "print the given parameters to the screen"; } }
public Action CommandFunction { get { return () => Command(); } }
public Action HelpFunction { get { return () => Console.WriteLine("not available"); } }
private string[] _Arguments;
public string[] Arguments { get { return _Arguments; } set { _Arguments = value; } }
public void Command() {
for (int i = 1; i < _Arguments.Length; i++) {
Console.Write(Arguments[i] + " ");
}
Console.Write("\n");
}
}
}
// vim: tabstop=2 softtabstop=2 shiftwidth=2 expandtab