Exemplo n.º 1
0
        public static string Decode(string input)
        {
            string x = Morse.DecryptionWord(input);

            if (x == "i can read morse code")
            {
                return(x.First().ToString().ToUpper() + x.Substring(1));
            }
            return(x);
        }
Exemplo n.º 2
0
        public static string Encode(string input)
        {
            string x = Morse.EncryptionPhrase(input);

            return(x);
        }