Ejemplo n.º 1
0
        public Command FindCommand(byte key)
        {
            Command ret = Command.First(x => Tools.GetByte(x.Key) == key);

            ret.Parent = this;
            return(ret);
        }
Ejemplo n.º 2
0
        public Command FindCommand(string cmdName)
        {
            Command ret = Command.First(x => x.Name == cmdName);

            ret.Parent = this;
            return(ret);
        }