Example #1
0
        public static void Command([NotNull] this BssCfg641 server, [NotNull] string command, params object[] args)
        {
            if (server == null) throw new ArgumentNullException("server");
            if (command == null) throw new ArgumentNullException("command");

            var formattedCommand = string.Format(command, args);
            server.ProcessInstruction(formattedCommand);
        }