Convert the following set to a List
Set<String> a = new Set<String>{'A','B','C','A','B','C'};
DEBUG|List: {A, B, C}
Set<String> a = new Set<String>{'A','B','C','A','B','C'}; List<String> b = new List<String>(a); System.debug('List: ' +b);