Esempio n. 1
0
        static void Main(string[] args)
        {
            string[] versions = {"6.0", "5.4.2", "5.4.1", "5.4", "5.3"};

            var mb = new MeetballChecker(versions);

            var output = mb.checkAll();

            Console.Write(output.Replace("|", Environment.NewLine));

            Console.ReadKey();
        }
Esempio n. 2
0
        public static string getServiceStatuses()
        {
            var mc = new MeetballChecker(getServiceVersions());

            return "Service Health:||" + mc.checkAll() + "````~";
        }