public static void Test() { Solution s = new Solution(); string[] a4 = new [] { "bella", "label", "roller" }; a4.PrintList(); s.CommonChars(a4).PrintList(); string[] a5 = new [] { "cool", "lock", "cook" }; a5.PrintList(); s.CommonChars(a5).PrintList(); }