I have a small list of bytes and I want to test that they\'re all different values. For instance, I have this:
List theList = new List
bool isUnique = theList.Distinct().Count() == theList.Count();