How to get distinct element in array

let suppose my array contains {3,8,8,8,15,15}

int[] arr = { 3, 8, 8, 15, 15 };

System.Collections.IEnumerable a = arr.Distinct();