Esempio n. 1
0
        public void PrintCodedData()
        {
            string          pattern         = @"[x|o]{5}";
            MatchCollection matchCollection = Regex.Matches(CodedLevelData, pattern);

            foreach (Match match in matchCollection)
            {
                OutPut.Print(match.Value);
            }
        }
Esempio n. 2
0
 public void PrintLevelName() => OutPut.Print(this.LevelName);