Beispiel #1
0
        //private void DrawRowElementsEmpty()
        //{
        //    DrawRowElementsEmpty(false);
        //}

        private void DrawRowElementsEmpty(bool withQuestion)
        {
            RowElements row = new RowElements();

            row.SetQuestion = withQuestion;
            for (int i = 0; i < this.NumElementPerRow; i++)
            {
                row.AddElement(new ColorElement(ColorElement.eColor._EMPTY));
            }
            Console.WriteLine(row.ToString());
        }
Beispiel #2
0
        private void DrawRowElements(RowElements row, bool drawResult)
        {
            string strDraw = row.ToString();

            if (drawResult)
            {
                strDraw += " => " + row.Result;
            }

            Console.WriteLine(strDraw);
        }