kOS.Command.Command C# (CSharp) Method

Command() public method

public Command ( Match regexMatch, kOS.ExecutionContext context ) : System
regexMatch System.Text.RegularExpressions.Match
context kOS.ExecutionContext
return System
        public Command(Match regexMatch, ExecutionContext context)
            : base(context)
        {
            Input = regexMatch.ToString();
            this.RegexMatch = regexMatch;
        }

Same methods

Command::Command ( String input, kOS.ExecutionContext context ) : System