示例#1
0
 public CommandAttribute(string command, int expectedArgCount, EngineToAppCommand expectedResponse, bool exactMatch) : this(command, expectedArgCount, expectedResponse)
 {
     ExactMatch = exactMatch;
 }
示例#2
0
 public CommandAttribute(string command, int expectedArgCount, EngineToAppCommand expectedResponse) : this(command, expectedArgCount)
 {
     ExpectedResponseObj = expectedResponse;
 }