Cosmos/source/RsenkTest/Commands/Version/VerCommander.cs
2008-04-14 03:25:10 +00:00

35 lines
849 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RsenkTest.Commands.Version
{
class VerCommander : ParameterBase
{
public override string Name
{
get { return "commander"; }
}
public override string Summary
{
get { return "Gets the current version number of the Cosmos Commander Shell."; }
}
public override void Help()
{
Prompter.PrintMessage(""); //TODO: Finish this method
}
public override void Execute()
{
Prompter.PrintMessage("Commander 0.0.0.1 alpha\n");
}
public override void Execute(params ParameterBase[] args)
{
throw new NotImplementedException();
}
}
}