Example #1
0
        public void AlignSplit(string text, string color = Colors.txtDefault)
        {
            SetColor(color);
            string left  = text.Split('|')[0];
            string right = text.Split('|')[1];

            Out.Extreme(left, right);
            DefaultColor();
        }