Exemple #1
0
        public static void call2()
        {
            string s1 = "Papas";
            string s2 = "Pap";

            OneEditAway.CheckDiff(s1, s2);
            Console.ReadKey();
        }
Exemple #2
0
        public static void call()
        {
            string s1 = "Papas";
            string s2 = "Pap";

            Console.WriteLine("One edit away {0} {1}", s1, s2);
            Console.WriteLine(OneEditAway.oneEdit(s1, s2));
            Console.ReadKey();
        }