kOS.Command.Command C# (CSharp) 메소드

Command() 공개 메소드

public Command ( Match regexMatch, kOS.ExecutionContext context ) : System
regexMatch System.Text.RegularExpressions.Match
context kOS.ExecutionContext
리턴 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