Skip to content

Instantly share code, notes, and snippets.

@brunomlopes
Created August 26, 2010 23:00
Show Gist options
  • Save brunomlopes/552424 to your computer and use it in GitHub Desktop.
Save brunomlopes/552424 to your computer and use it in GitHub Desktop.
public abstract class BaseIronPythonCommand : IIronPythonCommand
{
public abstract string Name { get; }
public virtual string GetName(string parameters)
{
return Name;
}
public virtual string GetDescription(string parameters)
{
return string.Empty;
}
public virtual string AutoComplete(string parameters)
{
return parameters;
}
public abstract string Execute(string command);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment