Exemplo n.º 1
0
        public Substitution Substitute(char letterToSubstitute)
        {
            var upperCaseLetterToSubstitute = char.ToUpper(letterToSubstitute);
            var substitution = new Substitution(upperCaseLetterToSubstitute);

            _substitutionList.Add(substitution);

            return(substitution);
        }
Exemplo n.º 2
0
        public Substitution Substitute(char letterToSubstitute)
        {
            var upperCaseLetterToSubstitute = char.ToUpper(letterToSubstitute);
            var substitution = new Substitution(upperCaseLetterToSubstitute);

            _substitutionList.Add(substitution);

            return substitution;
        }