Shortening Abhas' answer, this is what I do:
int count = new List<T>(theEnumerableList).Count;
One line and done.