Aurora.Addon.HyperGrid.HypergridLinker.RunCommand C# (CSharp) 메소드

RunCommand() 공개 메소드

public RunCommand ( string cmdparams ) : void
cmdparams string
리턴 void
        public void RunCommand(string[] cmdparams)
        {
            List<string> args = new List<string> (cmdparams);
            if (args.Count < 1)
                return;

            string command = args[0];
            args.RemoveAt (0);

            cmdparams = args.ToArray ();

            RunHGCommand (command, cmdparams);
        }